Skip to content

Commit

Permalink
fix ClientTest from cache key change
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Aug 22, 2024
1 parent 7dc15a1 commit bebb1ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Google/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,8 @@ public function testOnGceCacheAndCacheOptions()
$mockCache->getItem($prefix . GCECache::GCE_CACHE_KEY)
->shouldBeCalledTimes(1)
->willReturn($mockCacheItem->reveal());
$mockCache->getItem(GCECredentials::cacheKey . 'universe_domain')
// cache key from GCECredentials::getTokenUri() . 'universe_domain'
$mockCache->getItem('cc685e3a0717258b6a4cefcb020e96de6bcf904e76fd9fc1647669f42deff9bf')
->shouldBeCalledTimes(1)
->willReturn($mockUniverseDomainCacheItem->reveal());

Expand Down

0 comments on commit bebb1ec

Please sign in to comment.