aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/math/gamma_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/math/gamma_spec.rb')
-rw-r--r--spec/ruby/core/math/gamma_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/math/gamma_spec.rb b/spec/ruby/core/math/gamma_spec.rb
index ce7f82421f..386162a087 100644
--- a/spec/ruby/core/math/gamma_spec.rb
+++ b/spec/ruby/core/math/gamma_spec.rb
@@ -51,7 +51,7 @@ describe "Math.gamma" do
end
it "raises Math::DomainError given -1" do
- lambda { Math.gamma(-1) }.should raise_error(Math::DomainError)
+ -> { Math.gamma(-1) }.should raise_error(Math::DomainError)
end
# See https://bugs.ruby-lang.org/issues/10642
@@ -60,7 +60,7 @@ describe "Math.gamma" do
end
it "raises Math::DomainError given negative infinity" do
- lambda { Math.gamma(-Float::INFINITY) }.should raise_error(Math::DomainError)
+ -> { Math.gamma(-Float::INFINITY) }.should raise_error(Math::DomainError)
end
it "returns NaN given NaN" do