Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-05-20 10:44:43 +0300
committerMorris Jobke <hey@morrisjobke.de>2021-05-20 10:44:56 +0300
commitdc981623aa040c7e16dfcff16916a7706c689750 (patch)
treef570754f02d47e081d61a9f0bf783ebd8d7cc780
parente7c7f9da4071cd397907165a5a154f41164db042 (diff)
Fix test
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-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');
}