summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/hexencode_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/digest/hexencode_spec.rb')
-rw-r--r--spec/ruby/library/digest/hexencode_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/digest/hexencode_spec.rb b/spec/ruby/library/digest/hexencode_spec.rb
index fcbbf4846a..4b6db6eaff 100644
--- a/spec/ruby/library/digest/hexencode_spec.rb
+++ b/spec/ruby/library/digest/hexencode_spec.rb
@@ -25,7 +25,7 @@ describe "Digest.hexencode" do
-> { Digest.hexencode(nil) }.should raise_error(TypeError)
end
- it "raises a TypeError when passed a Fixnum" do
+ it "raises a TypeError when passed an Integer" do
-> { Digest.hexencode(9001) }.should raise_error(TypeError)
end
end