diff options
Diffstat (limited to 'spec/ruby/core/math/tan_spec.rb')
| -rw-r--r-- | spec/ruby/core/math/tan_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/math/tan_spec.rb b/spec/ruby/core/math/tan_spec.rb index 031fe75085..c7b188cd81 100644 --- a/spec/ruby/core/math/tan_spec.rb +++ b/spec/ruby/core/math/tan_spec.rb @@ -19,7 +19,7 @@ describe "Math.tan" do end it "raises a TypeError if the argument cannot be coerced with Float()" do - lambda { Math.tan("test") }.should raise_error(TypeError) + -> { Math.tan("test") }.should raise_error(TypeError) end it "returns NaN given NaN" do @@ -27,7 +27,7 @@ describe "Math.tan" do end it "raises a TypeError if the argument is nil" do - lambda { Math.tan(nil) }.should raise_error(TypeError) + -> { Math.tan(nil) }.should raise_error(TypeError) end it "accepts any argument that can be coerced with Float()" do |
