Skip to content

Commit 6069cb6

Browse files
committed
Merge pull request #496 from ycombinator/fix-smoke-test
Create test files in the correct place.
2 parents d5778d3 + 971419a commit 6069cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/OpenCloud/Smoke/Unit/ObjectStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private function createFiles($dir)
3939
{
4040
$content = substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 1000);
4141
for ($i = 1; $i <= 50; $i++) {
42-
$fh = fopen($dir . self::OBJECT_NAME . "_$i", 'c+');
42+
$fh = fopen($dir . '/' . self::OBJECT_NAME . "_$i", 'c+');
4343
fwrite($fh, $content);
4444
fclose($fh);
4545
}

0 commit comments

Comments
 (0)