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

fix argument order

* test/ruby/test_parse.rb (test_void_expr_stmts_value): expected value
  comes first.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-03-16 08:38:16 +00:00
parent a87f0aa071
commit 62cdd6e64a

View file

@ -742,7 +742,7 @@ x = __ENCODING__
x = def o.foo; end x = def o.foo; end
END END
end end
assert_equal($stderr.string.lines.to_a.size, 14) assert_equal(14, $stderr.string.lines.to_a.size)
$stderr = stderr $stderr = stderr
end end