Typo in [6845]. References #8437.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6846 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-05-25 22:05:57 +00:00
parent 109926c5a3
commit 6149c39d14

View File

@@ -41,7 +41,7 @@ class FinderTest < Test::Unit::TestCase
end
def test_find_by_ids_with_limit_and_offset
assert_equal 2, Entrant.find([1,3,2], :limit => 2)
assert_equal 2, Entrant.find([1,3,2], :limit => 2).size
assert_equal 1, Entrant.find([1,3,2], :limit => 3, :offset => 2).size
end