]> source.dussan.org Git - redmine.git/commitdiff
Revert r22342 as it became unnecessary after the addition of the :user_preferences...
authorGo MAEDA <maeda@farend.jp>
Mon, 16 Oct 2023 15:16:18 +0000 (15:16 +0000)
committerGo MAEDA <maeda@farend.jp>
Mon, 16 Oct 2023 15:16:18 +0000 (15:16 +0000)
git-svn-id: https://svn.redmine.org/redmine/trunk@22351 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/watcher_test.rb

index f5ea51496855b6e1ad487dcb1b26160dea9e6ae1..10023787fad3cafb5631cf2c403cb972c91d5c2e 100644 (file)
@@ -110,9 +110,7 @@ class WatcherTest < ActiveSupport::TestCase
   end
 
   def test_watcher_user_ids_should_make_ids_uniq
-    author = User.find(2)
-    author.pref.auto_watch_on = []
-    issue = Issue.new(:project => Project.find(1), :tracker_id => 1, :subject => "test", :author => author)
+    issue = Issue.new(:project => Project.find(1), :tracker_id => 1, :subject => "test", :author => User.find(2))
     issue.watcher_user_ids = ['1', '3', '1']
     issue.save!
     assert_equal 2, issue.watchers.count