summaryrefslogtreecommitdiff
path: root/spec/ruby/core/math/tanh_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/math/tanh_spec.rb')
-rw-r--r--spec/ruby/core/math/tanh_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/math/tanh_spec.rb b/spec/ruby/core/math/tanh_spec.rb
index 699d882ee8..568f8dfa77 100644
--- a/spec/ruby/core/math/tanh_spec.rb
+++ b/spec/ruby/core/math/tanh_spec.rb
@@ -16,7 +16,7 @@ describe "Math.tanh" do
end
it "raises a TypeError if the argument cannot be coerced with Float()" do
- lambda { Math.tanh("test") }.should raise_error(TypeError)
+ -> { Math.tanh("test") }.should raise_error(TypeError)
end
it "returns NaN given NaN" do
@@ -24,7 +24,7 @@ describe "Math.tanh" do
end
it "raises a TypeError if the argument is nil" do
- lambda { Math.tanh(nil) }.should raise_error(TypeError)
+ -> { Math.tanh(nil) }.should raise_error(TypeError)
end
it "accepts any argument that can be coerced with Float()" do