Commit ab2326f8 authored by Matija Čupić's avatar Matija Čupić

Make GCP billing check mock more specific

parent 97b4e76f
...@@ -13,7 +13,7 @@ module GoogleApi ...@@ -13,7 +13,7 @@ module GoogleApi
def stub_google_project_billing_status def stub_google_project_billing_status
redis_double = double redis_double = double
allow(Gitlab::Redis::SharedState).to receive(:with).and_yield(redis_double) allow(Gitlab::Redis::SharedState).to receive(:with).and_yield(redis_double)
allow(redis_double).to receive(:get).and_return('true') allow(redis_double).to receive(:get).with(CheckGcpProjectBillingWorker.redis_shared_state_key_for).and_return('true')
end end
def stub_cloud_platform_get_zone_cluster(project_id, zone, cluster_id, **options) def stub_cloud_platform_get_zone_cluster(project_id, zone, cluster_id, **options)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment