From 62cdd6e64a946ab40a83a5017330cca2fde70099 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 16 Mar 2012 08:38:16 +0000 Subject: [PATCH] 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 --- test/ruby/test_parse.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_parse.rb b/test/ruby/test_parse.rb index f0f872013d..563e2cebc4 100644 --- a/test/ruby/test_parse.rb +++ b/test/ruby/test_parse.rb @@ -742,7 +742,7 @@ x = __ENCODING__ x = def o.foo; end END end - assert_equal($stderr.string.lines.to_a.size, 14) + assert_equal(14, $stderr.string.lines.to_a.size) $stderr = stderr end