diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-13 09:14:11 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-13 09:14:11 +0900 |
| commit | b584eaf64bd3936bb38733d03230c090a9c4d6a8 (patch) | |
| tree | f1b0c5503e6ed4c98df70d79501383f9c995eabd /test | |
| parent | b4657182da44febeccd5f22af636bceda776122f (diff) | |
| parent | 53fa535d2bcf5ba0ccaf9687ef6efabbd1185341 (diff) | |
| download | mruby-b584eaf64bd3936bb38733d03230c090a9c4d6a8.tar.gz mruby-b584eaf64bd3936bb38733d03230c090a9c4d6a8.zip | |
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to '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 |
