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
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/tools/ci/non_empty_suites_spec.rb')
-rw-r--r--qa/spec/tools/ci/non_empty_suites_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/spec/tools/ci/non_empty_suites_spec.rb b/qa/spec/tools/ci/non_empty_suites_spec.rb
index d9bfe1eebe7..f71e07aa4b4 100644
--- a/qa/spec/tools/ci/non_empty_suites_spec.rb
+++ b/qa/spec/tools/ci/non_empty_suites_spec.rb
@@ -9,11 +9,11 @@ RSpec.describe QA::Tools::Ci::NonEmptySuites do
allow(Gitlab::QA::TestLogger).to receive(:logger).and_return(Logger.new(StringIO.new))
allow(Open3).to receive(:capture3).and_return(["output\n0", "", status])
allow(Open3).to receive(:capture3)
- .with("bundle exec bin/qa Test::Instance::All --count-examples-only --address http://dummy1.test")
+ .with("bundle exec bin/qa QA::Scenario::Test::Instance::All --count-examples-only --address http://dummy1.test")
.and_return(["output\n1", "", status])
end
it "returns runnable test suites" do
- expect(non_empty_suites.fetch).to eq("Test::Instance::All")
+ expect(non_empty_suites.fetch).to eq("QA::Scenario::Test::Instance::All")
end
end