From f86e4440bd23264def57e784233339719a92a2d4 Mon Sep 17 00:00:00 2001 From: onewe Date: Mon, 23 May 2022 14:55:30 +0800 Subject: [PATCH] [ISSUE #8417] retry ci --- .../nacos/plugin/auth/impl/controller/UserControllerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-default-impl/src/test/java/com/alibaba/nacos/plugin/auth/impl/controller/UserControllerTest.java b/plugin-default-impl/src/test/java/com/alibaba/nacos/plugin/auth/impl/controller/UserControllerTest.java index b4aba0b73ed..079ecbf6392 100644 --- a/plugin-default-impl/src/test/java/com/alibaba/nacos/plugin/auth/impl/controller/UserControllerTest.java +++ b/plugin-default-impl/src/test/java/com/alibaba/nacos/plugin/auth/impl/controller/UserControllerTest.java @@ -102,7 +102,7 @@ public void testLoginWithAuthedUser() throws AccessException { public void testSessionExpiredThrowHttpSessionRequiredException() throws IOException { when(authConfigs.isAuthEnabled()).thenReturn(true); when(request.getSession()).thenReturn(new MockHttpSession()); - Object o = userController.updateUser("nacos", "qwe1234", response, request); + Object o = userController.updateUser("nacos", "qwe12345", response, request); Assert.assertNull(o); verify(response).sendError(eq(HttpServletResponse.SC_UNAUTHORIZED), eq("session expired!")); }