summaryrefslogtreecommitdiffstats
path: root/test/functional/timelog_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-05-30 09:41:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-05-30 09:41:58 +0000
commitff2532e52d406bb29509ee63b8329a70ddfc5c52 (patch)
tree6d64f04519f957d31fe0ec986f50935f95e8740a /test/functional/timelog_controller_test.rb
parent78384d147a48a2d690c35f030232e232800dd919 (diff)
downloadredmine-ff2532e52d406bb29509ee63b8329a70ddfc5c52.tar.gz
redmine-ff2532e52d406bb29509ee63b8329a70ddfc5c52.zip
Fixed test failures introduced by r14288 (#19656).
git-svn-id: http://svn.redmine.org/redmine/trunk@14291 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/timelog_controller_test.rb')
-rw-r--r--test/functional/timelog_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb
index 1d4097ce2..68fde87f0 100644
--- a/test/functional/timelog_controller_test.rb
+++ b/test/functional/timelog_controller_test.rb
@@ -113,7 +113,7 @@ class TimelogControllerTest < ActionController::TestCase
def test_get_edit_with_an_existing_time_entry_with_inactive_activity
te = TimeEntry.find(1)
te.activity = TimeEntryActivity.find_by_name("Inactive Activity")
- te.save!
+ te.save!(:validate => false)
@request.session[:user_id] = 1
get :edit, :project_id => 1, :id => 1