From 7eba0a2720ec7cece503c4d6e3859b208fd312cb Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 21 Sep 2017 20:10:36 +0200 Subject: [PATCH] Fix comment Signed-off-by: Morris Jobke --- apps/files_sharing/tests/Controller/ShareAPIControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php index fc6e457284..45134df36b 100644 --- a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php +++ b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php @@ -220,7 +220,7 @@ class ShareAPIControllerTest extends TestCase { ->with('ocinternal:42') ->will($this->throwException(new \OC\Share20\Exception\ShareNotFound())); - $expected = new \OC_OCS_Result(null, 404, 'wrong share ID, share doesn\'t exist.'); + $expected = new \OC\OCS\Result(null, 404, 'wrong share ID, share doesn\'t exist.'); $this->assertEquals($expected, $this->ocs->getShare(42)); } */