Fix Hash test

This commit is contained in:
Jun Hiroe
2014-05-12 14:47:35 +09:00
parent bcbf078ebd
commit ab2ce33859
+1 -1
View File
@@ -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