diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-07-20 16:08:21 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-09-26 11:55:38 +0200 |
commit | ebf23778f5a71b421021165627738e6e7ed5216f (patch) | |
tree | 608365ada67984730c530886b33d4b0f864fb5b7 /apps/dav/tests | |
parent | de5e21269462957894e62b677d389862bb647d09 (diff) | |
download | nextcloud-server-ebf23778f5a71b421021165627738e6e7ed5216f.tar.gz nextcloud-server-ebf23778f5a71b421021165627738e6e7ed5216f.zip |
fix unpublishing test
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Publishing/PublishingTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Publishing/PublishingTest.php b/apps/dav/tests/unit/CalDAV/Publishing/PublishingTest.php index 43345a34889..b3ff36fc4ed 100644 --- a/apps/dav/tests/unit/CalDAV/Publishing/PublishingTest.php +++ b/apps/dav/tests/unit/CalDAV/Publishing/PublishingTest.php @@ -70,7 +70,7 @@ class PluginTest extends TestCase { public function testUnPublishing() { - $this->book->expects($this->once())->method('setPublishStatus')->with(true); + $this->book->expects($this->once())->method('setPublishStatus')->with(false); // setup request $request = new Request(); |