diff options
author | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-05-31 22:10:00 +0200 |
---|---|---|
committer | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-06-01 09:58:12 +0200 |
commit | 5fdb51240f2093342b0ff0930b8d3798446e0026 (patch) | |
tree | c4019295712e03653b15a879b19886459f03319f /spec/serializers | |
parent | 8a9a62e3294d92f4e70be6f427c17241a2b7a232 (diff) | |
download | gitlab-ce-5fdb51240f2093342b0ff0930b8d3798446e0026.tar.gz |
Rename build to job
Diffstat (limited to 'spec/serializers')
-rw-r--r-- | spec/serializers/build_artifact_entity_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/serializers/build_artifact_entity_spec.rb b/spec/serializers/build_artifact_entity_spec.rb index a2e24ae1535..ad0d3d3839e 100644 --- a/spec/serializers/build_artifact_entity_spec.rb +++ b/spec/serializers/build_artifact_entity_spec.rb @@ -23,10 +23,10 @@ describe BuildArtifactEntity do .to include "jobs/#{job.id}/artifacts/download" expect(subject[:keep_path]) - .to include "jobs/#{build.id}/artifacts/keep" + .to include "jobs/#{job.id}/artifacts/keep" expect(subject[:browse_path]) - .to include "jobs/#{build.id}/artifacts/browse" + .to include "jobs/#{job.id}/artifacts/browse" end end end |