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

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

test/functional/my_controller_test.rb

index 069cfdc336d162ba4abc12250bb8b373bb55483e..42a028d4079d38a796c4220ee4bb6d68a520ec3b 100644 (file)
@@ -204,6 +204,7 @@ class MyControllerTest < Redmine::ControllerTest
   def test_page_with_activity
     user = User.find(2)
     user.pref.my_page_layout = {'top' => ['activity']}
+    user.pref.time_zone = 'UTC'
     user.pref.save!
 
     get :page
@@ -211,7 +212,7 @@ class MyControllerTest < Redmine::ControllerTest
 
     assert_select 'div#block-activity' do
       assert_select 'h3' do
-        assert_select 'a[href=?]', activity_path(from: Date.current, user_id: user.id),  :text => 'Activity'
+        assert_select 'a[href=?]', activity_path(from: User.current.today, user_id: user.id),  :text => 'Activity'
       end
       assert_select 'div#activity' do
         assert_select 'dt', 10