summaryrefslogtreecommitdiffhomepage
path: root/test/t
diff options
context:
space:
mode:
authorJun Hiroe <[email protected]>2014-05-12 14:47:35 +0900
committerJun Hiroe <[email protected]>2014-05-12 20:47:44 +0900
commitab2ce33859facbc9bc9fa5c63dd33243054e4946 (patch)
treed9785c819686164f070eebca42b90d73c2432865 /test/t
parentbcbf078ebd4c3346982d0dc8e125da12b61a04bc (diff)
downloadmruby-ab2ce33859facbc9bc9fa5c63dd33243054e4946.tar.gz
mruby-ab2ce33859facbc9bc9fa5c63dd33243054e4946.zip
Fix Hash test
Diffstat (limited to 'test/t')
-rw-r--r--test/t/hash.rb2
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