Rails4: replace deprecated Relation#first with finder options at IssueCategoriesControllerTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12509 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-08 04:32:31 +00:00
parent 7d4420fe19
commit d9dc18011d
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class IssueCategoriesControllerTest < ActionController::TestCase
assert_difference 'IssueCategory.count' do
xhr :post, :create, :project_id => '1', :issue_category => {:name => 'New category'}
end
category = IssueCategory.first(:order => 'id DESC')
category = IssueCategory.order('id DESC').first
assert_equal 'New category', category.name
assert_response :success