Rails4: replace deprecated Relation#first with finder options at TimelogControllerTest
git-svn-id: http://svn.redmine.org/redmine/trunk@12642 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
abd6471270
commit
eab8f307f9
|
@ -224,7 +224,7 @@ class TimelogControllerTest < ActionController::TestCase
|
|||
end
|
||||
|
||||
assert_redirected_to '/projects/ecookbook/time_entries'
|
||||
time_entry = TimeEntry.first(:order => 'id DESC')
|
||||
time_entry = TimeEntry.order('id DESC').first
|
||||
assert_equal 1, time_entry.project_id
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue