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/integration/api_test/authentication_test.rb | |
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/integration/api_test/authentication_test.rb')
-rw-r--r-- | test/integration/api_test/authentication_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/integration/api_test/authentication_test.rb b/test/integration/api_test/authentication_test.rb index 678ee98f5..f1c2e9e79 100644 --- a/test/integration/api_test/authentication_test.rb +++ b/test/integration/api_test/authentication_test.rb @@ -20,6 +20,10 @@ require File.expand_path('../../../test_helper', __FILE__) class Redmine::ApiTest::AuthenticationTest < Redmine::ApiTest::Base fixtures :users + def teardown + User.current = nil + end + def test_api_should_deny_without_credentials get '/users/current.xml' assert_response 401 |