summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-06-21 17:28:54 -0500
committerGitHub <noreply@github.com>2017-06-21 17:28:54 -0500
commit18824d476ea555b1c49f2cd07e05581b08020183 (patch)
tree115279d5b921dcbcb87b64d33a487a862c5205da /apps
parent6a1c4990abdd0c55b24bf3699e6059763d6f3040 (diff)
parentfd6357708940e68eb01c3761d404053366213bee (diff)
downloadnextcloud-server-18824d476ea555b1c49f2cd07e05581b08020183.tar.gz
nextcloud-server-18824d476ea555b1c49f2cd07e05581b08020183.zip
Merge pull request #5474 from nextcloud/wording-4925
Improve wording of various error messages
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/tests/ApiTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/ApiTest.php b/apps/files_sharing/tests/ApiTest.php
index 046ede1f83e..67e50554696 100644
--- a/apps/files_sharing/tests/ApiTest.php
+++ b/apps/files_sharing/tests/ApiTest.php
@@ -1382,7 +1382,7 @@ class ApiTest extends TestCase {
$this->fail();
} catch (OCSException $e) {
$this->assertEquals(404, $e->getCode());
- $this->assertEquals('Cannot set expiration date more than 7 days in the future', $e->getMessage());
+ $this->assertEquals('Can’t set expiration date more than 7 days in the future', $e->getMessage());
}
$ocs->cleanup();