Rails4: replace deprecated Relation#first with finder options at ApiTest::IssuesTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12598 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-10 08:38:59 +00:00
parent b6d6325198
commit 1c938cd1d3
1 changed files with 5 additions and 5 deletions

View File

@ -504,7 +504,7 @@ class Redmine::ApiTest::IssuesTest < Redmine::ApiTest::Base
{:issue => {:project_id => 1, :subject => 'API test',
:tracker_id => 2, :status_id => 3}}, credentials('jsmith')
end
issue = Issue.first(:order => 'id DESC')
issue = Issue.order('id DESC').first
assert_equal 1, issue.project_id
assert_equal 2, issue.tracker_id
assert_equal 3, issue.status_id
@ -553,7 +553,7 @@ class Redmine::ApiTest::IssuesTest < Redmine::ApiTest::Base
credentials('jsmith')
end
issue = Issue.first(:order => 'id DESC')
issue = Issue.order('id DESC').first
assert_equal 1, issue.project_id
assert_equal 2, issue.tracker_id
assert_equal 3, issue.status_id
@ -804,7 +804,7 @@ class Redmine::ApiTest::IssuesTest < Redmine::ApiTest::Base
end
xml = Hash.from_xml(response.body)
token = xml['upload']['token']
attachment = Attachment.first(:order => 'id DESC')
attachment = Attachment.order('id DESC').first
# create the issue with the upload's token
assert_difference 'Issue.count' do
@ -815,7 +815,7 @@ class Redmine::ApiTest::IssuesTest < Redmine::ApiTest::Base
credentials('jsmith')
assert_response :created
end
issue = Issue.first(:order => 'id DESC')
issue = Issue.order('id DESC').first
assert_equal 1, issue.attachments.count
assert_equal attachment, issue.attachments.first
@ -850,7 +850,7 @@ class Redmine::ApiTest::IssuesTest < Redmine::ApiTest::Base
end
xml = Hash.from_xml(response.body)
token = xml['upload']['token']
attachment = Attachment.first(:order => 'id DESC')
attachment = Attachment.order('id DESC').first
# update the issue with the upload's token
assert_difference 'Journal.count' do