From 9c005b592817d80f2581805d47aea1bce47ef9ff Mon Sep 17 00:00:00 2001 From: onewe Date: Mon, 23 May 2022 09:24:21 +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 998ec700c00..b4aba0b73ed 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", "qwe123", response, request); + Object o = userController.updateUser("nacos", "qwe1234", response, request); Assert.assertNull(o); verify(response).sendError(eq(HttpServletResponse.SC_UNAUTHORIZED), eq("session expired!")); }