diff options
| author | Jun Hiroe <[email protected]> | 2014-05-12 14:47:35 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2014-05-12 20:47:44 +0900 |
| commit | ab2ce33859facbc9bc9fa5c63dd33243054e4946 (patch) | |
| tree | d9785c819686164f070eebca42b90d73c2432865 /test/t | |
| parent | bcbf078ebd4c3346982d0dc8e125da12b61a04bc (diff) | |
| download | mruby-ab2ce33859facbc9bc9fa5c63dd33243054e4946.tar.gz mruby-ab2ce33859facbc9bc9fa5c63dd33243054e4946.zip | |
Fix Hash test
Diffstat (limited to 'test/t')
| -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 |
