summaryrefslogtreecommitdiff
path: root/spec/ruby/core/float/gte_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/float/gte_spec.rb')
-rw-r--r--spec/ruby/core/float/gte_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/float/gte_spec.rb b/spec/ruby/core/float/gte_spec.rb
index 0886dffd97..98ec60b70b 100644
--- a/spec/ruby/core/float/gte_spec.rb
+++ b/spec/ruby/core/float/gte_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