aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/comparable/gte_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/comparable/gte_spec.rb')
-rw-r--r--spec/ruby/core/comparable/gte_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/comparable/gte_spec.rb b/spec/ruby/core/comparable/gte_spec.rb
index cdaeb60843..328f58c66c 100644
--- a/spec/ruby/core/comparable/gte_spec.rb
+++ b/spec/ruby/core/comparable/gte_spec.rb
@@ -42,6 +42,6 @@ describe "Comparable#>=" do
b = ComparableSpecs::Weird.new(20)
a.should_receive(:<=>).any_number_of_times.and_return(nil)
- lambda { (a >= b) }.should raise_error(ArgumentError)
+ -> { (a >= b) }.should raise_error(ArgumentError)
end
end