From dc981623aa040c7e16dfcff16916a7706c689750 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 20 May 2021 09:44:43 +0200 Subject: [PATCH] Fix test Signed-off-by: Morris Jobke --- apps/encryption/tests/Crypto/EncryptionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/encryption/tests/Crypto/EncryptionTest.php b/apps/encryption/tests/Crypto/EncryptionTest.php index c14ee22e87..b052dca238 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'); }