diff options
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Security/CryptoTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Security/CryptoTest.php b/tests/lib/Security/CryptoTest.php index b65a9a36985..388cac32660 100644 --- a/tests/lib/Security/CryptoTest.php +++ b/tests/lib/Security/CryptoTest.php @@ -65,7 +65,7 @@ class CryptoTest extends \Test\TestCase { public function testWrongParameters() { $this->expectException(\Exception::class); - $this->expectExceptionMessage('Authenticated ciphertext could not be decoded.'); + $this->expectExceptionMessage('Authenticated ciphertext could not be decoded (invalid format).'); $encryptedString = '1|2'; $this->crypto->decrypt($encryptedString, 'ThisIsAVeryS3cur3P4ssw0rd'); |