diff options
author | Maxence Lange <maxence@nextcloud.com> | 2017-03-14 14:28:45 -0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-03-14 19:27:20 +0100 |
commit | 16e1c21fcc9ce1cd19a22cec915356a82ae33925 (patch) | |
tree | c56830c43b58442e85a73920ffa222a1ddf8f7e6 /apps/dav | |
parent | 1b9ed81cb67a419c34b67629038c3a53055b747e (diff) | |
download | nextcloud-server-16e1c21fcc9ce1cd19a22cec915356a82ae33925.tar.gz nextcloud-server-16e1c21fcc9ce1cd19a22cec915356a82ae33925.zip |
fix mock
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/tests/unit/Connector/Sabre/SharesPluginTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/SharesPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/SharesPluginTest.php index 9d8a66f24b6..2b4a886050a 100644 --- a/apps/dav/tests/unit/Connector/Sabre/SharesPluginTest.php +++ b/apps/dav/tests/unit/Connector/Sabre/SharesPluginTest.php @@ -235,7 +235,7 @@ class SharesPluginTest extends \Test\TestCase { ->with( $this->equalTo('user1'), $this->anything(), - $this->equalTo(false) + $this->equalTo(true) ) ->will($this->returnCallback(function ($userId, $node, $flag) use ($shareTypes, $dummyShares) { return [111 => $dummyShares]; |