Fix test on 1.9.2 postgres.

Multiple records were found and postgres was returning them in a different
order than what the test assumed.
This commit is contained in:
Eric Davis 2011-06-03 14:11:08 -07:00
parent 3b64c60bc0
commit 85c7cfd0a7
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class ActivityTest < ActiveSupport::TestCase
assert_kind_of Array, events
assert events.include?(Attachment.find_by_container_type_and_container_id('Project', 1).last_journal)
assert events.include?(Attachment.find_by_container_type_and_container_id('Version', 1).last_journal)
assert events.include?(Attachment.find_by_container_type_and_container_id_and_id('Version', 1, 9).last_journal)
assert_equal [Attachment], events.collect(&:journaled).collect(&:class).uniq
assert_equal %w(Project Version), events.collect(&:journaled).collect(&:container_type).uniq.sort
end