diff options
author | Go MAEDA <maeda@farend.jp> | 2018-11-03 07:15:00 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-11-03 07:15:00 +0000 |
commit | 46b028b1b87a3e06df19e1c41f9240d301568967 (patch) | |
tree | 11393f0d0cc2058ce65f40aac64d62caa501e2ed /test/functional | |
parent | dced4762005be491000490fc4c9661d0415272f7 (diff) | |
download | redmine-46b028b1b87a3e06df19e1c41f9240d301568967.tar.gz redmine-46b028b1b87a3e06df19e1c41f9240d301568967.zip |
Fix that the following tests fail randomly due to uninitialized User.current (#29853):
* AttachmentsVisibilityTest#test_attachment_should_be_visible
*
Redmine::AttachmentFieldFormatTest#test_should_accept_a_hash_with_upload_on_create
*
Redmine::AttachmentFieldFormatTest#test_should_replace_attachment_on_update
Patch by Gilad Shanan.
git-svn-id: http://svn.redmine.org/redmine/trunk@17616 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/attachments_visibility_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/attachments_visibility_test.rb b/test/functional/attachments_visibility_test.rb index 96230e8b2..2f9197e6b 100644 --- a/test/functional/attachments_visibility_test.rb +++ b/test/functional/attachments_visibility_test.rb @@ -26,6 +26,7 @@ class AttachmentsVisibilityTest < Redmine::ControllerTest :issues, :trackers, :versions def setup + User.current = nil set_tmp_attachments_directory @field = IssueCustomField.generate!(:field_format => 'attachment', :visible => true) |