typo in assert_same_elements

git-svn-id: https://svn.thoughtbot.com/plugins/tb_test_helpers/trunk@47 7bbfaf0e-4d1d-0410-9690-a8bb5f8ef2aa
This commit is contained in:
tsaleh 2007-03-15 16:08:23 +00:00
parent 9b4d763693
commit 99cb931dd7
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ module Test # :nodoc:
assert a1h = a1.inject({}){|h,e| h[e] = a1.select{|i| i == e}.size; h}
assert a2h = a2.inject({}){|h,e| h[e] = a2.select{|i| i == e}.size; h}
assert_equal(a1, a2, msg)
assert_equal(a1h, a2h, msg)
end
end
end