Merge branch 'dev' into test

This commit is contained in:
chenbowen
2026-02-02 11:57:56 +08:00
52 changed files with 320 additions and 159 deletions

View File

@@ -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());