From 24f15fca6429f741ec060086770ba9961035cc02 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 20 Jun 2014 15:40:38 +0200 Subject: [PATCH] Fix unit tests --- tests/lib/connector/sabre/objecttree.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index a88e23bbe2f..fc9f802066f 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -25,6 +25,10 @@ class TestDoubleFileView extends \OC\Files\View{ return $this->updatables[$path]; } + public function isCreatable($path) { + return $this->updatables[$path]; + } + public function isDeletable($path) { return $this->deletables[$path]; }