]> source.dussan.org Git - redmine.git/commitdiff
Rails4: replace deprecated find_all_by_* at RepositoryTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 9 Jan 2014 05:08:54 +0000 (05:08 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 9 Jan 2014 05:08:54 +0000 (05:08 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@12558 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/repository_test.rb

index 43c62376c803c0438dfba8afed28992bf1f1e55b..2bdd8c87233c06958eb3db666e6e694f67c3401a 100644 (file)
@@ -175,7 +175,7 @@ class RepositoryTest < ActiveSupport::TestCase
 
   def test_destroy_should_delete_parents_associations
     changeset = Changeset.find(102)
-    changeset.parents = Changeset.find_all_by_id([100, 101])
+    changeset.parents = Changeset.where(:id => [100, 101]).all
     assert_difference 'Changeset.connection.select_all("select * from changeset_parents").count', -2 do
       Repository.find(10).destroy
     end
@@ -183,7 +183,7 @@ class RepositoryTest < ActiveSupport::TestCase
 
   def test_destroy_should_delete_issues_associations
     changeset = Changeset.find(102)
-    changeset.issues = Issue.find_all_by_id([1, 2])
+    changeset.issues = Issue.where(:id => [1, 2]).all
     assert_difference 'Changeset.connection.select_all("select * from changesets_issues").count', -2 do
       Repository.find(10).destroy
     end