aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/new_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/new_spec.rb')
-rw-r--r--spec/ruby/core/string/new_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/string/new_spec.rb b/spec/ruby/core/string/new_spec.rb
index f65daf2dd2..ca678f5323 100644
--- a/spec/ruby/core/string/new_spec.rb
+++ b/spec/ruby/core/string/new_spec.rb
@@ -51,8 +51,8 @@ describe "String.new" do
end
it "raises TypeError on inconvertible object" do
- lambda { String.new 5 }.should raise_error(TypeError)
- lambda { String.new nil }.should raise_error(TypeError)
+ -> { String.new 5 }.should raise_error(TypeError)
+ -> { String.new nil }.should raise_error(TypeError)
end
it "returns a binary String" do