test_previous_project_index fails depending on the current time and zone (#30288, #31620).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@18316 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2019-06-25 07:35:14 +00:00
parent 282ddf0ee8
commit b72fd8b19e

View 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