diff options
Diffstat (limited to 'spec/ruby/core/math/asin_spec.rb')
| -rw-r--r-- | spec/ruby/core/math/asin_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/math/asin_spec.rb b/spec/ruby/core/math/asin_spec.rb index 8591ea80ea..3a674a1147 100644 --- a/spec/ruby/core/math/asin_spec.rb +++ b/spec/ruby/core/math/asin_spec.rb @@ -17,15 +17,15 @@ describe "Math.asin" do end it "raises an Math::DomainError if the argument is greater than 1.0" do - lambda { Math.asin(1.0001) }.should raise_error( Math::DomainError) + -> { Math.asin(1.0001) }.should raise_error( Math::DomainError) end it "raises an Math::DomainError if the argument is less than -1.0" do - lambda { Math.asin(-1.0001) }.should raise_error( Math::DomainError) + -> { Math.asin(-1.0001) }.should raise_error( Math::DomainError) end it "raises a TypeError if the argument cannot be coerced with Float()" do - lambda { Math.asin("test") }.should raise_error(TypeError) + -> { Math.asin("test") }.should raise_error(TypeError) end it "returns NaN given NaN" do @@ -33,7 +33,7 @@ describe "Math.asin" do end it "raises a TypeError if the argument is nil" do - lambda { Math.asin(nil) }.should raise_error(TypeError) + -> { Math.asin(nil) }.should raise_error(TypeError) end it "accepts any argument that can be coerced with Float()" do |
