diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-08 13:40:47 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-08 13:40:47 +0000 |
commit | 7c3887408abefd58cabb7a28621e9fd66b41c7ac (patch) | |
tree | a80991c1ee497f426ebf031b36bcda4015cac51a | |
parent | 1491ef544d22bfe5cd5540ff3f8e2995bfdb89da (diff) |
test_jit.rb: fix typo
This is notified by zns-san.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/ruby/test_jit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index c3c11a1efb..71807c5eba 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -37,7 +37,7 @@ class TestJIT < Test::Unit::TestCase ) end if stdout - assert_match(stdout, out, "Expected stderr #{out.inspect} to match #{stdout.inspect} with script:\n#{code_block(script)}") + assert_match(stdout, out, "Expected stdout #{out.inspect} to match #{stdout.inspect} with script:\n#{code_block(script)}") end end |