From 1c938cd1d3d27f0708c6617fd3dcf5a943affa04 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Fri, 10 Jan 2014 08:38:59 +0000 Subject: 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 --- test/integration/api_test/issues_test.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/integration/api_test/issues_test.rb') diff --git a/test/integration/api_test/issues_test.rb b/test/integration/api_test/issues_test.rb index a8839a391..368e424f8 100644 --- a/test/integration/api_test/issues_test.rb +++ b/test/integration/api_test/issues_test.rb @@ -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 -- cgit v1.2.3