We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18fe8bc commit 3e7ef05Copy full SHA for 3e7ef05
storage/test/BucketLockCommandTest.php
@@ -47,7 +47,8 @@ public function setUp()
47
$this->markTestSkipped('No application credentials were found.');
48
}
49
50
- $bucketName = 'php-bucket-lock-' . time();
+ # Append random because tests for multiple PHP versions were running at the same time.
51
+ $bucketName = 'php-bucket-lock-' . time() . '-' . rand(1000, 9999);
52
$this->bucket = $this->storage->createBucket($bucketName);
53
54
0 commit comments