From: Toshi MARUYAMA Date: Fri, 10 Jan 2014 05:46:15 +0000 (+0000) Subject: remove unneeded Relation#all from IssuesControllerTest#test_bulk_copy_to_another_project X-Git-Tag: 2.5.0~310 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=57740505b0ff7bb48cf1144aa4883be9c6922a63;p=redmine.git remove unneeded Relation#all from IssuesControllerTest#test_bulk_copy_to_another_project git-svn-id: http://svn.redmine.org/redmine/trunk@12589 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index d88d678f8..8fa45fe7a 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -3686,7 +3686,7 @@ class IssuesControllerTest < ActionController::TestCase end assert_redirected_to '/projects/ecookbook/issues' - copies = Issue.all(:order => 'id DESC', :limit => issues.size) + copies = Issue.order('id DESC').limit(issues.size) copies.each do |copy| assert_equal 2, copy.project_id end