This commit is contained in:
parent
b12b23cbf0
commit
a6c61175c5
|
|
@ -146,7 +146,7 @@
|
|||
<log4j2_version>2.23.1</log4j2_version>
|
||||
<commons_io_version>2.16.1</commons_io_version>
|
||||
|
||||
<embedded_redis_version>0.13.0</embedded_redis_version>
|
||||
<embedded_redis_version>1.1.0</embedded_redis_version>
|
||||
|
||||
<!-- Alibaba -->
|
||||
<alibaba_spring_context_support_version>1.0.11</alibaba_spring_context_support_version>
|
||||
|
|
|
|||
|
|
@ -250,7 +250,8 @@ class RedisMetadataReportTest {
|
|||
if (e.getCause() instanceof JedisConnectionException
|
||||
&& e.getCause().getCause() instanceof JedisDataException) {
|
||||
Assertions.assertEquals(
|
||||
"ERR invalid password", e.getCause().getCause().getMessage());
|
||||
"WRONGPASS invalid username-password pair or user is disabled.",
|
||||
e.getCause().getCause().getMessage());
|
||||
} else {
|
||||
Assertions.fail("no invalid password exception!");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue