From c1a84fc735a5da4bd292c4d1a283655463c93755 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 28 Aug 2018 16:24:40 +0200 Subject: [PATCH] fix test case for append --- tests/AbstractShareTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/AbstractShareTest.php b/tests/AbstractShareTest.php index 6d65999..dacceed 100644 --- a/tests/AbstractShareTest.php +++ b/tests/AbstractShareTest.php @@ -475,6 +475,7 @@ public function testWriteStream($name, $text) { } public function testAppendStream() { + $name = 'foo.txt'; $fh = $this->share->append($this->root . '/' . $name); fwrite($fh, 'foo'); fclose($fh);