summaryrefslogtreecommitdiff
path: root/spec/ruby/core/math/log10_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/math/log10_spec.rb')
-rw-r--r--spec/ruby/core/math/log10_spec.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/ruby/core/math/log10_spec.rb b/spec/ruby/core/math/log10_spec.rb
index 4f2df87760..2c594999b7 100644
--- a/spec/ruby/core/math/log10_spec.rb
+++ b/spec/ruby/core/math/log10_spec.rb
@@ -15,10 +15,8 @@ describe "Math.log10" do
Math.log10(10e15).should be_close(16.0, TOLERANCE)
end
- conflicts_with :Complex do
- it "raises an Errno::EDOM if the argument is less than 0" do
- lambda { Math.log10(-1e-15) }.should raise_error( Errno::EDOM)
- end
+ it "raises an Math::DomainError if the argument is less than 0" do
+ lambda { Math.log10(-1e-15) }.should raise_error(Math::DomainError)
end
it "raises a TypeError if the argument cannot be coerced with Float()" do