summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-09-21 20:38:18 +0200
committerGitHub <noreply@github.com>2017-09-21 20:38:18 +0200
commit38568c362b55e5b77838ab40d81c23fd724633d1 (patch)
tree1fe12b7ab3f1dfd13669a904e3b2fd9303ff6b37 /apps/files_sharing/tests/Controller/ShareAPIControllerTest.php
parente336283a4860b1e4e498968980905105711a6776 (diff)
parent7eba0a2720ec7cece503c4d6e3859b208fd312cb (diff)
downloadnextcloud-server-38568c362b55e5b77838ab40d81c23fd724633d1.tar.gz
nextcloud-server-38568c362b55e5b77838ab40d81c23fd724633d1.zip
Merge pull request #6605 from nextcloud/oc_ocs_response_is_dep
OC_OCS_Response is deprecated
Diffstat (limited to 'apps/files_sharing/tests/Controller/ShareAPIControllerTest.php')
-rw-r--r--apps/files_sharing/tests/Controller/ShareAPIControllerTest.php2
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));
}
*/