summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-12 04:38:43 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-12 04:38:43 +0000
commit58fef6226ed517fbefa77ec61eea81cc18f823c1 (patch)
tree6cf62805bbc519e88a08b1d420605986b2c5d1ed /test
parent30fbe3a93110447a79c2a4e0ded3a17d0a5251b0 (diff)
merge revision(s) 35015:
* numeric.c (flodivmod): must through the same pass if HAVE_FMOD or not. this is a bugfix of r35013. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@37151 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_float.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb
index 440fd39bbe..d2cee75433 100644
--- a/test/ruby/test_float.rb
+++ b/test/ruby/test_float.rb
@@ -196,7 +196,7 @@ class TestFloat < Test::Unit::TestCase
end
def test_modulo3
- bug6048 = '[ruby-core:42726]'
+ bug6044 = '[ruby-core:42726]'
assert_equal(4.2, 4.2.send(:%, Float::INFINITY))
assert_equal(4.2, 4.2 % Float::INFINITY)
assert_is_minus_zero(-0.0 % 4.2)