From eab8f307f9bad59e127a47f1191671da391de947 2014-01-11 10:13:53 From: Toshi MARUYAMA Date: 2014-01-11 10:13:53 Subject: [PATCH] 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 --- diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index 6ea3a20..71586ef 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -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