aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/plus_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/plus_spec.rb')
-rw-r--r--spec/ruby/core/string/plus_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/string/plus_spec.rb b/spec/ruby/core/string/plus_spec.rb
index a9f287a82b..b8e3bf0a4b 100644
--- a/spec/ruby/core/string/plus_spec.rb
+++ b/spec/ruby/core/string/plus_spec.rb
@@ -18,8 +18,8 @@ describe "String#+" do
end
it "raises a TypeError when given any object that fails #to_str" do
- lambda { "" + Object.new }.should raise_error(TypeError)
- lambda { "" + 65 }.should raise_error(TypeError)
+ -> { "" + Object.new }.should raise_error(TypeError)
+ -> { "" + 65 }.should raise_error(TypeError)
end
it "doesn't return subclass instances" do