fix(test): 修改内嵌redis的启动端口

This commit is contained in:
禾几海
2020-08-14 21:30:40 +08:00
parent af9f243a83
commit 5a47803611
2 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ public class RedisServerMock {
*/
@PostConstruct
public void startRedis() throws IOException {
redisServer = new RedisServer(6379);
redisServer = new RedisServer(6380);
redisServer.start();
}