aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-05-20 09:44:43 +0200
committerMorris Jobke <hey@morrisjobke.de>2021-05-20 09:44:56 +0200
commitdc981623aa040c7e16dfcff16916a7706c689750 (patch)
treef570754f02d47e081d61a9f0bf783ebd8d7cc780 /apps/encryption
parente7c7f9da4071cd397907165a5a154f41164db042 (diff)
downloadnextcloud-server-dc981623aa040c7e16dfcff16916a7706c689750.tar.gz
nextcloud-server-dc981623aa040c7e16dfcff16916a7706c689750.zip
Fix test
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/encryption')
-rw-r--r--apps/encryption/tests/Crypto/EncryptionTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/Crypto/EncryptionTest.php b/apps/encryption/tests/Crypto/EncryptionTest.php
index c14ee22e879..b052dca2387 100644
--- a/apps/encryption/tests/Crypto/EncryptionTest.php
+++ b/apps/encryption/tests/Crypto/EncryptionTest.php
@@ -431,7 +431,7 @@ class EncryptionTest extends TestCase {
public function testDecrypt() {
$this->expectException(\OC\Encryption\Exceptions\DecryptionFailedException::class);
- $this->expectExceptionMessage('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');
+ $this->expectExceptionMessage('Cannot decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');
$this->instance->decrypt('abc');
}