aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/float/gt_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/float/gt_spec.rb')
-rw-r--r--spec/ruby/core/float/gt_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/float/gt_spec.rb b/spec/ruby/core/float/gt_spec.rb
index 6ecab3592d..0d73f1c3df 100644
--- a/spec/ruby/core/float/gt_spec.rb
+++ b/spec/ruby/core/float/gt_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