summaryrefslogtreecommitdiff
path: root/spec/ruby/core/math/log2_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/math/log2_spec.rb')
-rw-r--r--spec/ruby/core/math/log2_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/math/log2_spec.rb b/spec/ruby/core/math/log2_spec.rb
index 1594f2d7af..3d4d41d130 100644
--- a/spec/ruby/core/math/log2_spec.rb
+++ b/spec/ruby/core/math/log2_spec.rb
@@ -15,7 +15,7 @@ describe "Math.log2" do
Math.log2((2**301+45677544234809571)).should == 301.0
end
- it "raises an Errno::EDOM if the argument is less than 0" do
+ it "raises Math::DomainError if the argument is less than 0" do
-> { Math.log2(-1e-15) }.should raise_error( Math::DomainError)
end