summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/io/putc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/shared/io/putc.rb')
-rw-r--r--spec/ruby/shared/io/putc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/shared/io/putc.rb b/spec/ruby/shared/io/putc.rb
index fac14886ee..e6012c0098 100644
--- a/spec/ruby/shared/io/putc.rb
+++ b/spec/ruby/shared/io/putc.rb
@@ -6,7 +6,7 @@ describe :io_putc, shared: true do
rm_r @name
end
- describe "with a Fixnum argument" do
+ describe "with an Integer argument" do
it "writes one character as a String" do
@io.should_receive(:write).with("A")
@io_object.send(@method, 65).should == 65