summaryrefslogtreecommitdiff
path: root/test/ruby/test_time.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-24 08:26:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-24 08:26:09 +0000
commit87108634e10364103928cb96df95fa6b1c6f951d (patch)
treed9918fb96a021265dae85ee6475f6d2148cdcfd6 /test/ruby/test_time.rb
parentf664ffb5a0abddcbf04edfa9c9ba708bef57fadb (diff)
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
Diffstat (limited to 'test/ruby/test_time.rb')
-rw-r--r--test/ruby/test_time.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb
index f2200e421e..89fcd3522c 100644
--- a/test/ruby/test_time.rb
+++ b/test/ruby/test_time.rb
@@ -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