From 971419aea92d78a0982dc4236deadb3c3bf832e3 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Tue, 9 Dec 2014 17:39:53 +0530 Subject: [PATCH] Create test files in the correct place. --- tests/OpenCloud/Smoke/Unit/ObjectStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/OpenCloud/Smoke/Unit/ObjectStore.php b/tests/OpenCloud/Smoke/Unit/ObjectStore.php index dccb74f1b..a24b1a94f 100644 --- a/tests/OpenCloud/Smoke/Unit/ObjectStore.php +++ b/tests/OpenCloud/Smoke/Unit/ObjectStore.php @@ -39,7 +39,7 @@ private function createFiles($dir) { $content = substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 1000); for ($i = 1; $i <= 50; $i++) { - $fh = fopen($dir . self::OBJECT_NAME . "_$i", 'c+'); + $fh = fopen($dir . '/' . self::OBJECT_NAME . "_$i", 'c+'); fwrite($fh, $content); fclose($fh); }