diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-09-21 20:10:36 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-09-21 20:10:36 +0200 |
commit | 7eba0a2720ec7cece503c4d6e3859b208fd312cb (patch) | |
tree | c8a7e82ce40c1e071e1a67d004f4e69459554dc1 /apps/files_sharing/tests | |
parent | 2207fdcd8c0965ea72c8dc812ef182f33f6f9c05 (diff) | |
download | nextcloud-server-7eba0a2720ec7cece503c4d6e3859b208fd312cb.tar.gz nextcloud-server-7eba0a2720ec7cece503c4d6e3859b208fd312cb.zip |
Fix comment
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_sharing/tests')
-rw-r--r-- | apps/files_sharing/tests/Controller/ShareAPIControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php index fc6e4572845..45134df36b7 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)); } */ |