ruby-changes:17520
From: naruse <ko1@a...>
Date: Mon, 18 Oct 2010 10:53:47 +0900 (JST)
Subject: [ruby-changes:17520] Ruby:r29525 (trunk): Fix wrong test.
naruse 2010-10-18 10:53:41 +0900 (Mon, 18 Oct 2010) New Revision: 29525 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29525 Log: Fix wrong test. Modified files: trunk/test/ruby/test_sprintf.rb Index: test/ruby/test_sprintf.rb =================================================================== --- test/ruby/test_sprintf.rb (revision 29524) +++ test/ruby/test_sprintf.rb (revision 29525) @@ -210,7 +210,7 @@ assert_equal(" -0x1.4p+0", sprintf("%10a", -1.25)) assert_equal(" -0x1.2p+0", sprintf("%10a", -1.125)) assert_equal(" -0x1.1p+0", sprintf("%10a", -1.0625)) - assert_equal("-0x1.05p+0", sprintf("%10a", -1.03125)) + assert_equal("-0x1.08p+0", sprintf("%10a", -1.03125)) end BSIZ = 120 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/