diff options
author | Rémy Coutable <remy@rymai.me> | 2018-08-27 16:37:43 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-08-27 16:37:46 +0200 |
commit | 5165a2907b6a84ae0dfbe909eb1b3488e4f3364b (patch) | |
tree | f6dc00cb33dbfcb41791a7f71115c4b109d7f7c7 /qa | |
parent | 097621855113f94a61ed30c62866a4febce5176b (diff) | |
download | gitlab-ce-5165a2907b6a84ae0dfbe909eb1b3488e4f3364b.tar.gz |
[QA] Fix wrong spec files path in QA::Scenario::Test::Instance
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/scenario/test/instance.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/scenario/test/instance.rb b/qa/qa/scenario/test/instance.rb index b9a73d3ffb8..2117a610efb 100644 --- a/qa/qa/scenario/test/instance.rb +++ b/qa/qa/scenario/test/instance.rb @@ -26,7 +26,7 @@ module QA if rspec_options.any? rspec_options else - ::File.expand_path('../specs/features', __dir__) + ::File.expand_path('../../specs/features', __dir__) end end end |