diff options
| author | ddavison <ddavison@gitlab.com> | 2018-08-20 20:03:01 -0400 |
|---|---|---|
| committer | ddavison <ddavison@gitlab.com> | 2018-08-20 20:03:01 -0400 |
| commit | 6919b531706d6ccfeb4937a4f4479ebe0d1b4888 (patch) | |
| tree | a90a8fe42a1ca5e2470ff5df93340d8bda18f005 | |
| parent | c0e6c330175cf3c28dbf9446d8fb4383fe0fd9a0 (diff) | |
| download | gitlab-ce-qa-fix-broken-pathing.tar.gz | |
fix spec pathing v2qa-fix-broken-pathing
| -rw-r--r-- | qa/spec/scenario/test/instance/all_spec.rb | 2 | ||||
| -rw-r--r-- | qa/spec/scenario/test/instance/smoke_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qa/spec/scenario/test/instance/all_spec.rb b/qa/spec/scenario/test/instance/all_spec.rb index 4ffeff1654a..423527e938e 100644 --- a/qa/spec/scenario/test/instance/all_spec.rb +++ b/qa/spec/scenario/test/instance/all_spec.rb @@ -24,7 +24,7 @@ describe QA::Scenario::Test::Instance::All do subject.perform("test") expect(runner).to have_received(:options=) - .with(::File.expand_path('../../qa/specs/features', __dir__)) + .with(::File.expand_path('../../../../qa/specs/features', __dir__)) end end diff --git a/qa/spec/scenario/test/instance/smoke_spec.rb b/qa/spec/scenario/test/instance/smoke_spec.rb index ce83547559e..e79d19e8212 100644 --- a/qa/spec/scenario/test/instance/smoke_spec.rb +++ b/qa/spec/scenario/test/instance/smoke_spec.rb @@ -30,7 +30,7 @@ describe QA::Scenario::Test::Instance::Smoke do subject.perform("test") expect(runner).to have_received(:options=) - .with(::File.expand_path('../../qa/specs/features', __dir__)) + .with(::File.expand_path('../../../../qa/specs/features', __dir__)) end end |
