aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/integer/fdiv_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/fdiv_spec.rb')
-rw-r--r--spec/ruby/core/integer/fdiv_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/integer/fdiv_spec.rb b/spec/ruby/core/integer/fdiv_spec.rb
index b27e6f1389..6de170278f 100644
--- a/spec/ruby/core/integer/fdiv_spec.rb
+++ b/spec/ruby/core/integer/fdiv_spec.rb
@@ -35,11 +35,11 @@ describe "Integer#fdiv" do
end
it "raises a TypeError when argument isn't numeric" do
- lambda { 1.fdiv(mock('non-numeric')) }.should raise_error(TypeError)
+ -> { 1.fdiv(mock('non-numeric')) }.should raise_error(TypeError)
end
it "raises an ArgumentError when passed multiple arguments" do
- lambda { 1.fdiv(6,0.2) }.should raise_error(ArgumentError)
+ -> { 1.fdiv(6,0.2) }.should raise_error(ArgumentError)
end
it "follows the coercion protocol" do