Skip to content

Commit 572abfe

Browse files
Merge pull request #16 from opensoft/rand-check
Make sure the test check filename is unique
2 parents 7da2256 + 2cb070a commit 572abfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Check/LocalStorageCheck.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function check()
8585

8686
// Ensure that each adapter is writeable.
8787
$fs = $this->storageManager->getFilesystemForStorage($storage);
88-
$filename = 'test_tmp_file_monitor.bak';
88+
$filename = sprintf('%s.bak', uniqid('test_tmp_', false));
8989

9090
try {
9191
$bytesWritten = $fs->write($filename, 'content', true);

0 commit comments

Comments
 (0)