Commit 01a1f02c authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2240 from suzukaze/fix-hash-test

Fix Hash test
parents bcbf078e ab2ce338
......@@ -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
......
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