diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-13 08:42:36 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-13 08:42:36 +0900 |
| commit | 01a1f02c6eff3228a3d98539385c3417686bf533 (patch) | |
| tree | d9785c819686164f070eebca42b90d73c2432865 | |
| parent | bcbf078ebd4c3346982d0dc8e125da12b61a04bc (diff) | |
| parent | ab2ce33859facbc9bc9fa5c63dd33243054e4946 (diff) | |
| download | mruby-01a1f02c6eff3228a3d98539385c3417686bf533.tar.gz mruby-01a1f02c6eff3228a3d98539385c3417686bf533.zip | |
Merge pull request #2240 from suzukaze/fix-hash-test
Fix Hash test
| -rw-r--r-- | test/t/hash.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/hash.rb b/test/t/hash.rb index 0e035a3a7..0d8d137c4 100644 --- a/test/t/hash.rb +++ b/test/t/hash.rb @@ -40,7 +40,7 @@ assert('Hash#dup') do a = { 'a' => 1 } b = a.dup a['a'] = 2 - assert_equal(b, {'a' => 1}) + assert_equal({'a' => 1}, b) end assert('Hash#default', '15.2.13.4.5') do |
