diff --git a/tests/Unit/Auth/Jwt/JwtVerifierTest.php b/tests/Unit/Auth/Jwt/JwtVerifierTest.php index 795e97e..20c2bec 100644 --- a/tests/Unit/Auth/Jwt/JwtVerifierTest.php +++ b/tests/Unit/Auth/Jwt/JwtVerifierTest.php @@ -78,7 +78,7 @@ public function testIfVerifyThrowsInvalidCryptographicAlgorithmExceptionWhenAlgo $this->expectException(Exception\InvalidCryptographicAlgorithmException::class); $this->expectExceptionMessage( - 'Cryptographic algorithm `foo` is not supported. Supported algorithms: `86D88Kf,eXaunmL,YuyXoY`' + 'Cryptographic algorithm `foo` is not supported. Supported algorithms: `86D88Kf,eXaunmL,YuyXoY,W6WcOKB`' ); $this->jwtVerifier->verify($this->jwtTokenMock); }