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/qa/runtime/gpg.rb')
-rw-r--r--qa/qa/runtime/gpg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/runtime/gpg.rb b/qa/qa/runtime/gpg.rb
index 3314b14cd68..fb2a63ba2e3 100644
--- a/qa/qa/runtime/gpg.rb
+++ b/qa/qa/runtime/gpg.rb
@@ -14,7 +14,7 @@ module QA
def key
return @key if defined?(@key)
- shell("gpg --import #{File.join(Path.fixtures_path, 'gpg', 'admin.asc')}")
+ shell("gpg --import #{Path.fixture('gpg', 'admin.asc')}")
@key = shell("gpg --armor --export #{key_id}")
end
end