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:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-11-30 16:19:07 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-12-03 14:04:49 +0300
commit8f01e67980d4ab8a7879800156cdc1dee07a4e8b (patch)
treee2b15852db7663163e7f88d6aa6a44498379b167 /spec/workers
parent2045a771bfa5a1a32ff04f5bc23d58f1170b6359 (diff)
Revert "Rename `job_archive|metadata` to `artifacts_archive|metadata`"
This reverts commit 714082e65304ae2ec5c5400c59a68ab63e724aa9.
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/expire_build_instance_artifacts_worker_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/workers/expire_build_instance_artifacts_worker_spec.rb b/spec/workers/expire_build_instance_artifacts_worker_spec.rb
index 05e2aa0703b..c0d2b1b7411 100644
--- a/spec/workers/expire_build_instance_artifacts_worker_spec.rb
+++ b/spec/workers/expire_build_instance_artifacts_worker_spec.rb
@@ -23,7 +23,7 @@ describe ExpireBuildInstanceArtifactsWorker do
end
it 'does remove the job artifact record' do
- expect(build.reload.artifacts_archive).to be_nil
+ expect(build.reload.job_archive).to be_nil
end
end
end
@@ -42,7 +42,7 @@ describe ExpireBuildInstanceArtifactsWorker do
end
it 'does not remove the job artifact record' do
- expect(build.reload.artifacts_archive).not_to be_nil
+ expect(build.reload.job_archive).not_to be_nil
end
end
@@ -58,7 +58,7 @@ describe ExpireBuildInstanceArtifactsWorker do
end
it 'does not remove the job artifact record' do
- expect(build.reload.artifacts_archive).not_to be_nil
+ expect(build.reload.job_archive).not_to be_nil
end
end