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:
authorShinya Maeda <shinya@gitlab.com>2018-02-02 17:31:06 +0300
committerShinya Maeda <shinya@gitlab.com>2018-02-06 09:50:08 +0300
commit23ca10b914987caba154f8f0f8b89ed880d1f808 (patch)
tree477dcd03d331da5de054d5b89374753c48824961 /spec/workers
parent11a37c40daa30a0cc1272c25dc23cb953db54dff (diff)
Alessio catches: Test fix
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/create_trace_artifact_worker_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/create_trace_artifact_worker_spec.rb b/spec/workers/create_trace_artifact_worker_spec.rb
index 303eb29ebda..854abd9cca7 100644
--- a/spec/workers/create_trace_artifact_worker_spec.rb
+++ b/spec/workers/create_trace_artifact_worker_spec.rb
@@ -9,7 +9,7 @@ describe CreateTraceArtifactWorker do
it 'executes service' do
expect_any_instance_of(Ci::CreateTraceArtifactService)
- .to receive(:execute)
+ .to receive(:execute).with(job)
subject
end