Merge branch 'sh-fix-appearance-spec-failure' into 'master'

Fix order-dependent spec failure in appearance_spec.rb

Closes #64083

See merge request gitlab-org/gitlab-ce!30323
This commit is contained in:
Douglas Barbosa Alexandre 2019-07-03 19:24:04 +00:00
commit fb35a3b7f4
2 changed files with 2 additions and 3 deletions

View File

@ -21,7 +21,7 @@ describe Appearance do
end
end
context 'with uploads', :quarantine do
context 'with uploads' do
it_behaves_like 'model with uploads', false do
let(:model_object) { create(:appearance, :with_logo) }
let(:upload_attribute) { :logo }

View File

@ -85,8 +85,7 @@ describe FileMover do
context 'when tmp uploader is not local storage' do
before do
allow(PersonalFileUploader).to receive(:object_store_enabled?) { true }
tmp_uploader.object_store = ObjectStorage::Store::REMOTE
stub_uploads_object_storage(uploader: PersonalFileUploader)
allow_any_instance_of(PersonalFileUploader).to receive(:file_storage?) { false }
end