diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-02 04:55:04 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-02 04:55:04 +0000 |
commit | b25434f6a94babe6b3e09d70aff8d8b76771ad82 (patch) | |
tree | e745d1a39b3c36b27bbdb870b8af9761f1982add | |
parent | 4f19ce8376c664cb673a2728e48da0291aae2612 (diff) |
* test/ruby/test_math.rb: Fix lgamma test
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | test/ruby/test_math.rb | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Tue Mar 2 13:54:44 2010 Marc-Andre Lafortune <[email protected]> + + * test/ruby/test_math.rb: Fix lgamma test + Mon Mar 1 23:26:56 2010 Tanaka Akira <[email protected]> * ext/pty/pty.c (pty_open): refine the path for master IO. diff --git a/test/ruby/test_math.rb b/test/ruby/test_math.rb index f7055d7b5b..15a9b83c35 100644 --- a/test/ruby/test_math.rb +++ b/test/ruby/test_math.rb @@ -266,7 +266,6 @@ class TestMath < Test::Unit::TestCase check(Math.log(6), g) assert_equal(s, 1) - assert_infinity Math.lgamma(-Float::INFINITY) assert_raise(Math::DomainError) { Math.lgamma(-Float::INFINITY) } end |