Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa/spec
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-11 09:10:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-11 09:10:02 +0300
commit2000704b7a6cc9eb37dd597ed03567265eda9308 (patch)
treebf52d4b9b4d5420a6e2b2974f34326e0eda8a25f /qa/spec
parentf6dad4cfc60d81a00c5ef33b7680d3cca4393e29 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa/spec')
-rw-r--r--qa/spec/resource/base_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/spec/resource/base_spec.rb b/qa/spec/resource/base_spec.rb
index a60bb3e6eaf..c6dd56b5f47 100644
--- a/qa/spec/resource/base_spec.rb
+++ b/qa/spec/resource/base_spec.rb
@@ -170,16 +170,16 @@ RSpec.describe QA::Resource::Base do
let(:api_resource) { { test: 'api_with_block' } }
before do
- allow(QA::Runtime::Logger).to receive(:info)
+ allow(QA::Runtime::Logger).to receive(:debug)
end
- it 'returns value from api and emits an INFO log entry' do
+ it 'returns value from api and emits an debug log entry' do
result = subject.fabricate!(resource: resource)
expect(result).to be_a(described_class)
expect(result.test).to eq('api_with_block')
expect(QA::Runtime::Logger)
- .to have_received(:info).with(/api_with_block/)
+ .to have_received(:debug).with(/api_with_block/)
end
end
end