aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/getbyte_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/getbyte_spec.rb')
-rw-r--r--spec/ruby/core/string/getbyte_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/core/string/getbyte_spec.rb b/spec/ruby/core/string/getbyte_spec.rb
index 84286ada92..27b7d826ea 100644
--- a/spec/ruby/core/string/getbyte_spec.rb
+++ b/spec/ruby/core/string/getbyte_spec.rb
@@ -59,11 +59,11 @@ describe "String#getbyte" do
end
it "raises an ArgumentError unless given one argument" do
- lambda { "glark".getbyte }.should raise_error(ArgumentError)
- lambda { "food".getbyte(0,0) }.should raise_error(ArgumentError)
+ -> { "glark".getbyte }.should raise_error(ArgumentError)
+ -> { "food".getbyte(0,0) }.should raise_error(ArgumentError)
end
it "raises a TypeError unless its argument can be coerced into an Integer" do
- lambda { "a".getbyte('a') }.should raise_error(TypeError)
+ -> { "a".getbyte('a') }.should raise_error(TypeError)
end
end