diff options
Diffstat (limited to 'qa/spec/scenario/test/instance_spec.rb')
-rw-r--r-- | qa/spec/scenario/test/instance_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/spec/scenario/test/instance_spec.rb b/qa/spec/scenario/test/instance_spec.rb index 92d68f9f7d9..dd2e934582f 100644 --- a/qa/spec/scenario/test/instance_spec.rb +++ b/qa/spec/scenario/test/instance_spec.rb @@ -8,12 +8,12 @@ describe QA::Scenario::Test::Instance do context '#perform' do let(:arguments) { spy('Runtime::Scenario') } let(:release) { spy('Runtime::Release') } - let(:runner) { spy('Specs::Runner') } + let(:runner) { spy('Scenario::Runner') } before do stub_const('QA::Runtime::Release', release) - stub_const('QA::Runtime::Scenario', arguments) - stub_const('QA::Specs::Runner', runner) + stub_const('Gitlab::QA::Framework::Runtime::Scenario', arguments) + stub_const('Gitlab::QA::Framework::Scenario::Runner', runner) allow(runner).to receive(:perform).and_yield(runner) end |