From 282ddf0ee83149820b93a7d1f91f819607e9b659 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Tue, 25 Jun 2019 00:02:17 +0000 Subject: [PATCH] test_page_with_activity fails depending on the current time and zone (#30288). 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/functional/my_controller_test.rb b/test/functional/my_controller_test.rb index 069cfdc33..42a028d40 100644 --- a/test/functional/my_controller_test.rb +++ b/test/functional/my_controller_test.rb @@ -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