diff options
author | Go MAEDA <maeda@farend.jp> | 2023-12-11 09:14:47 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-12-11 09:14:47 +0000 |
commit | 21423d4b7f49284ea4f76afe1939fdc2693d5742 (patch) | |
tree | 8502ed7952ccf729feaacab69460886b24071cb2 /test/unit/user_test.rb | |
parent | 7c7c1dac16f4fe6afd312e5372273e20549983e2 (diff) | |
download | redmine-21423d4b7f49284ea4f76afe1939fdc2693d5742.tar.gz redmine-21423d4b7f49284ea4f76afe1939fdc2693d5742.zip |
Revert r22504 that missing a necessary file (#39500).
git-svn-id: https://svn.redmine.org/redmine/trunk@22511 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/user_test.rb')
-rw-r--r-- | test/unit/user_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb index e89381a68..823365842 100644 --- a/test/unit/user_test.rb +++ b/test/unit/user_test.rb @@ -192,7 +192,7 @@ class UserTest < ActiveSupport::TestCase def test_user_before_create_should_set_the_mail_notification_to_the_default_setting user1 = User.generate! - assert_equal 'only_assigned', user1.mail_notification + assert_equal 'only_my_events', user1.mail_notification with_settings :default_notification_option => 'all' do user2 = User.generate! assert_equal 'all', user2.mail_notification |