From 34bfe041e8604f557fb2b3d60c68866640a61967 Mon Sep 17 00:00:00 2001 From: chenbowen Date: Thu, 29 Jan 2026 18:28:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=86=99=E6=89=8B=E5=8A=A8=E9=92=88?= =?UTF-8?q?=E5=AF=B9=E7=94=A8=E6=88=B7=E4=BB=A5=E5=8F=8A=E7=BB=84=E7=BB=87?= =?UTF-8?q?=E7=9A=84=E5=8D=95=E6=9D=A1=E5=90=8C=E6=AD=A5=E9=80=BB=E8=BE=91?= =?UTF-8?q?=20=E7=99=BB=E5=BD=95=E8=8E=B7=E5=8F=96=20token=20=E6=97=B6?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=A2=E6=88=B7=E7=AB=AF=E7=BC=96=E5=8F=B7?= =?UTF-8?q?=E6=A0=87=E8=AF=86=20=E6=94=AF=E6=8C=81=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E7=BC=96=E5=8F=B7=E4=BB=A5=E5=8F=8A?= =?UTF-8?q?=E7=94=A8=E6=88=B7id=E6=89=B9=E9=87=8F=E5=A4=B1=E6=95=88=20toke?= =?UTF-8?q?n=20=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/system/service/auth/AdminAuthServiceImplTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zt-module-system/zt-module-system-server/src/test/java/com/zt/plat/module/system/service/auth/AdminAuthServiceImplTest.java b/zt-module-system/zt-module-system-server/src/test/java/com/zt/plat/module/system/service/auth/AdminAuthServiceImplTest.java index ec8e133c..aacbbe2c 100644 --- a/zt-module-system/zt-module-system-server/src/test/java/com/zt/plat/module/system/service/auth/AdminAuthServiceImplTest.java +++ b/zt-module-system/zt-module-system-server/src/test/java/com/zt/plat/module/system/service/auth/AdminAuthServiceImplTest.java @@ -257,7 +257,7 @@ public class AdminAuthServiceImplTest extends BaseDbUnitTest { // 准备参数 String mobile = randomString(); String code = randomString(); - AuthSmsLoginReqVO reqVO = new AuthSmsLoginReqVO(mobile, code); + AuthSmsLoginReqVO reqVO = new AuthSmsLoginReqVO(mobile, code,null); // mock 方法(验证码) when(smsCodeApi.useSmsCode(argThat(smsCodeUseReqDTO -> { assertEquals(mobile, smsCodeUseReqDTO.getMobile());