Commit ab2ce338 authored by Jun Hiroe's avatar Jun Hiroe

Fix Hash test

parent bcbf078e
...@@ -40,7 +40,7 @@ assert('Hash#dup') do ...@@ -40,7 +40,7 @@ assert('Hash#dup') do
a = { 'a' => 1 } a = { 'a' => 1 }
b = a.dup b = a.dup
a['a'] = 2 a['a'] = 2
assert_equal(b, {'a' => 1}) assert_equal({'a' => 1}, b)
end end
assert('Hash#default', '15.2.13.4.5') do assert('Hash#default', '15.2.13.4.5') do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment