diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-01-13 21:17:28 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-01-14 12:48:17 +0100 |
commit | 6b0a43aff36f0bbb9050b3c04155a3ccd9c1a75b (patch) | |
tree | fbe82328b917aacf19f2da12e77a6d4489f0a51a /features | |
parent | 154b8ceba4ac2d92a2387ad50d7f2b4ed5b2dd8a (diff) | |
download | gitlab-ce-6b0a43aff36f0bbb9050b3c04155a3ccd9c1a75b.tar.gz |
Improve readability of artifacts browser `Entry` related code
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/project/builds.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/project/builds.rb b/features/steps/project/builds.rb index 5702496ac84..28395281077 100644 --- a/features/steps/project/builds.rb +++ b/features/steps/project/builds.rb @@ -84,6 +84,6 @@ class Spinach::Features::ProjectBuilds < Spinach::FeatureSteps # this will be accelerated by Workhorse response_json = JSON.parse(page.body, symbolize_names: true) expect(response_json[:archive]).to end_with('build_artifacts.zip') - expect(response_json[:path]).to eq Base64.encode64('ci_artifacts.txt') + expect(response_json[:entry]).to eq Base64.encode64('ci_artifacts.txt') end end |