Browse Source

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
tags/4.1.0
Go MAEDA 4 years ago
parent
commit
b72fd8b19e
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      test/functional/activities_controller_test.rb

+ 2
- 1
test/functional/activities_controller_test.rb 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


Loading…
Cancel
Save