prevent equivalent array from breaking tests

This commit is contained in:
Tom Preston-Werner 2009-01-23 14:33:14 -08:00
parent d644d1df32
commit 04a283f618
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ class TestSite < Test::Unit::TestCase
clear_dest
@s.process
assert_equal 5, @s.posts.length
assert_equal ['foo'], @s.categories.keys
assert_equal 7, @s.posts.length
assert_equal ["category", "foo", "z_category"].sort, @s.categories.keys.sort
assert_equal 1, @s.categories['foo'].length
end
end