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 'spec/support/shared_examples/lib/gitlab/import/advance_stage_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/lib/gitlab/import/advance_stage_shared_examples.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/shared_examples/lib/gitlab/import/advance_stage_shared_examples.rb b/spec/support/shared_examples/lib/gitlab/import/advance_stage_shared_examples.rb
index c172e73ce9e..ed365b0e524 100644
--- a/spec/support/shared_examples/lib/gitlab/import/advance_stage_shared_examples.rb
+++ b/spec/support/shared_examples/lib/gitlab/import/advance_stage_shared_examples.rb
@@ -63,7 +63,7 @@ RSpec.shared_examples Gitlab::Import::AdvanceStage do |factory:|
next_worker = described_class::STAGES[next_stage.to_sym]
expect_next_found_instance_of(import_state.class) do |state|
- expect(state).to receive(:refresh_jid_expiration)
+ expect(state).to receive(:refresh_jid_expiration).twice
end
expect(next_worker).to receive(:perform_async).with(project.id)
@@ -124,7 +124,7 @@ RSpec.shared_examples Gitlab::Import::AdvanceStage do |factory:|
freeze_time do
next_worker = described_class::STAGES[next_stage.to_sym]
- expect(next_worker).not_to receive(:perform_async).with(project.id)
+ expect(next_worker).not_to receive(:perform_async)
expect_next_instance_of(described_class) do |klass|
expect(klass).to receive(:find_import_state).and_call_original
end