aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/float/lt_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/float/lt_spec.rb')
-rw-r--r--spec/ruby/core/float/lt_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/float/lt_spec.rb b/spec/ruby/core/float/lt_spec.rb
index 9723b59c5e..c01b6e0e02 100644
--- a/spec/ruby/core/float/lt_spec.rb
+++ b/spec/ruby/core/float/lt_spec.rb
@@ -11,7 +11,7 @@ describe "Float#<" do
end
it "raises an ArgumentError when given a non-Numeric" do
- lambda { 5.0 < "4" }.should raise_error(ArgumentError)
- lambda { 5.0 < mock('x') }.should raise_error(ArgumentError)
+ -> { 5.0 < "4" }.should raise_error(ArgumentError)
+ -> { 5.0 < mock('x') }.should raise_error(ArgumentError)
end
end