diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-30 17:37:31 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-30 17:37:31 +0000 |
| commit | 3896a8bbda2068b579d379496cec87961404ef60 (patch) | |
| tree | 03ce37a4dddf78284b9b863c4937361174a7ee18 /test/ruby | |
| parent | a863cfa7a1d13d6c36ce46c30884b1b6e736fb41 (diff) | |
| download | ruby-3896a8bbda2068b579d379496cec87961404ef60.tar.gz ruby-3896a8bbda2068b579d379496cec87961404ef60.tar.xz ruby-3896a8bbda2068b579d379496cec87961404ef60.zip | |
* test/ruby/test_float.rb (test_precision): test by assert_in_delta.
[ruby-dev:27575]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9481 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_float.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb index 741093fa6..fb180ff81 100644 --- a/test/ruby/test_float.rb +++ b/test/ruby/test_float.rb @@ -40,10 +40,10 @@ class TestFloat < Test::Unit::TestCase end def test_precision - #s = "3.7517675036461267e+17" - #assert(s == sprintf("%.16e", s.to_f)) - f = 3.7517675036461267e+17 - assert_equal(f, sprintf("%.16e", f).to_f) + u = 3.7517675036461267e+17 + v = sprintf("%.16e", u).to_f + assert_in_delta(u, v, u.abs * Float::EPSILON) + assert_in_delta(u, v, v.abs * Float::EPSILON) end def test_symmetry_bignum # [ruby-bugs-ja:118] |
