summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-02 04:55:04 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-02 04:55:04 +0000
commitb25434f6a94babe6b3e09d70aff8d8b76771ad82 (patch)
treee745d1a39b3c36b27bbdb870b8af9761f1982add
parent4f19ce8376c664cb673a2728e48da0291aae2612 (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--ChangeLog4
-rw-r--r--test/ruby/test_math.rb1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 71468d6baa..46067b1b73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Mar 2 13:54:44 2010 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
+
+ * test/ruby/test_math.rb: Fix lgamma test
+
Mon Mar 1 23:26:56 2010 Tanaka Akira <akr@fsij.org>
* 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