remove unneeded Relation#all from ProjectTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12713 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-27 00:09:02 +00:00
parent e746e5dd83
commit e63029cee4
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ class ProjectTest < ActiveSupport::TestCase
assert_equal [1,2,3], parent.version_ids.sort
assert_equal [4], child.version_ids
assert_equal [6], private_child.version_ids
assert_equal [7], Version.where(:sharing => 'system').all.collect(&:id)
assert_equal [7], Version.where(:sharing => 'system').collect(&:id)
assert_equal 6, parent.shared_versions.size
parent.shared_versions.each do |version|