diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2018-01-07 18:08:27 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2018-01-07 18:08:27 +0000 |
commit | e86eb09111d45787281251b80e0caab2e6c7de6f (patch) | |
tree | 7daa7487a504838005e60e882d4e17e7ddb4a328 /spec/workers | |
parent | 684e574abafb6d31b713ca0e5c4fc0c0c66b7846 (diff) | |
download | gitlab-ce-e86eb09111d45787281251b80e0caab2e6c7de6f.tar.gz |
Fix check_gcp_project_billing_worker_spec.rb
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/check_gcp_project_billing_worker_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/check_gcp_project_billing_worker_spec.rb b/spec/workers/check_gcp_project_billing_worker_spec.rb index 744ac65859a..f52a903327c 100644 --- a/spec/workers/check_gcp_project_billing_worker_spec.rb +++ b/spec/workers/check_gcp_project_billing_worker_spec.rb @@ -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 |