1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_time.rb: arguments order

* test/ruby/test_time.rb (TestTime#test_marshal_zone_gc): fix
  the order of arguments.  expected value should come first.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-03-24 08:26:09 +00:00
parent f664ffb5a0
commit 87108634e1

View file

@ -320,7 +320,7 @@ class TestTime < Test::Unit::TestCase
while t.zone.dup == "JST" && n < done
n += 1
end
assert_equal n, done, "Bug #9652"
assert_equal done, n, "Bug #9652"
assert_equal "JST", t.zone, "Bug #9652"
end;
end