Rails4: replace deprecated Relation#update_all at GroupTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12530 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-08 12:20:16 +00:00
parent 9f079015bf
commit fb877ddcfb
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class GroupTest < ActiveSupport::TestCase
def test_destroy_should_unassign_issues
group = Group.first
Issue.update_all(["assigned_to_id = ?", group.id], 'id = 1')
Issue.where(:id => 1).update_all(["assigned_to_id = ?", group.id])
assert group.destroy
assert group.destroyed?