]> source.dussan.org Git - redmine.git/commitdiff
test_previous_project_index fails depending on the current time and zone (#30288...
authorGo MAEDA <maeda@farend.jp>
Tue, 25 Jun 2019 07:35:14 +0000 (07:35 +0000)
committerGo MAEDA <maeda@farend.jp>
Tue, 25 Jun 2019 07:35:14 +0000 (07:35 +0000)
Patch by Mizuki ISHIKAWA.

git-svn-id: http://svn.redmine.org/redmine/trunk@18316 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/activities_controller_test.rb

index c94a9c939237b9a30d652dbdb4f7ad10800b80cb..5b0cf9d022795d8b2165d53e6afe684a0320f8fa 100644 (file)
@@ -50,13 +50,14 @@ class ActivitiesControllerTest < Redmine::ControllerTest
   end
 
   def test_previous_project_index
+    @request.session[:user_id] = 1
     get :index, :params => {
         :id => 1,
         :from => 2.days.ago.to_date
       }
     assert_response :success
 
-    assert_select 'h3', :text => /#{3.days.ago.to_date.day}/
+    assert_select 'h3', :text => /#{User.current.time_to_date(3.days.ago).day}/
     assert_select 'dl dt.issue a', :text => /Cannot print recipes/
   end