diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-10-30 11:57:52 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-10-30 11:57:52 +0900 |
| commit | c2ad094839166b20baba35c0b2e30ec10d9107c3 (patch) | |
| tree | 0fd6ef57dc09c4251ccc46da6ff7eea2b3e91c34 | |
| parent | 88758e36308492c860808ed9f7fb66e74f89e589 (diff) | |
| download | mruby-c2ad094839166b20baba35c0b2e30ec10d9107c3.tar.gz mruby-c2ad094839166b20baba35c0b2e30ec10d9107c3.zip | |
fix wrong actual and expected order
| -rw-r--r-- | test/t/nameerror.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/nameerror.rb b/test/t/nameerror.rb index 644c6a3cb..3e3c59264 100644 --- a/test/t/nameerror.rb +++ b/test/t/nameerror.rb @@ -20,7 +20,7 @@ assert('NameError#name', '15.2.31.2.1') do $test_dummy_result = e.name end - assert_equal $test_dummy_result, :bar + assert_equal :bar, $test_dummy_result end assert('NameError#initialize', '15.2.31.2.2') do |
