diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-04-15 16:17:15 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2021-05-20 09:26:38 +0200 |
commit | 0e39cef0d91147cd9d1d9394fbf67b4f2f521935 (patch) | |
tree | 578b77459fcb0275bf4dc082878acddacaa77feb /apps/files_sharing/tests | |
parent | 1627eb45bb8ea8be9800355e4c1607c47316492b (diff) | |
download | nextcloud-server-0e39cef0d91147cd9d1d9394fbf67b4f2f521935.tar.gz nextcloud-server-0e39cef0d91147cd9d1d9394fbf67b4f2f521935.zip |
l10n: Unify spelling in test
Diffstat (limited to 'apps/files_sharing/tests')
-rw-r--r-- | apps/files_sharing/tests/Controller/ShareAPIControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php index 009dfe86a48..11eefc18f64 100644 --- a/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php +++ b/apps/files_sharing/tests/Controller/ShareAPIControllerTest.php @@ -3475,13 +3475,13 @@ class ShareAPIControllerTest extends TestCase { $this->shareManager->expects($this->once()) ->method('updateShare') ->with($share) - ->willThrowException(new GenericShareException('Can’t increase permissions of path/file', 'Can’t increase permissions of path/file', 404)); + ->willThrowException(new GenericShareException('Cannot increase permissions of path/file', 'Cannot increase permissions of path/file', 404)); try { $ocs->updateShare(42, 31); $this->fail(); } catch (OCSException $e) { - $this->assertEquals('Can’t increase permissions of path/file', $e->getMessage()); + $this->assertEquals('Cannot increase permissions of path/file', $e->getMessage()); } } |