💩 解决单测失败的问题

This commit is contained in:
yadong.zhang 2024-08-04 15:51:38 +08:00
parent 0731ebd130
commit b01704ff78
2 changed files with 3 additions and 1 deletions

View File

@ -1373,7 +1373,7 @@ public enum AuthDefaultSource implements AuthSource {
@Override @Override
public Class<? extends AuthDefaultRequest> getTargetClass() { public Class<? extends AuthDefaultRequest> getTargetClass() {
return null; return AuthFigmaRequest.class;
} }
} }

View File

@ -82,6 +82,8 @@ public class AuthRequestBuilderTest {
.stackOverflowKey("asd") .stackOverflowKey("asd")
.deviceId("asd") .deviceId("asd")
.clientOsType(3) .clientOsType(3)
.kid("kid")
.teamId("teamid")
.build(); .build();
for (AuthDefaultSource value : AuthDefaultSource.values()) { for (AuthDefaultSource value : AuthDefaultSource.values()) {