Fix check_gcp_project_billing_worker_spec.rb

This commit is contained in:
Kamil Trzciński 2018-01-07 18:08:27 +00:00
parent 684e574aba
commit e86eb09111
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ describe CheckGcpProjectBillingWorker do
expect(CheckGcpProjectBillingService).to receive_message_chain(:new, :execute).and_return([double])
expect(Gitlab::Redis::SharedState).to receive(:with).and_yield(redis_double)
expect(redis_double).to receive(:set).with(described_class.redis_shared_state_key_for(token), anything)
expect(redis_double).to receive(:set).with(described_class.redis_shared_state_key_for(token), anything, anything)
subject
end