🎨 修复部分单元测试

This commit is contained in:
Binary Wang
2020-08-23 23:54:15 +08:00
parent 33b13b1bcd
commit daf0b23328
5 changed files with 4 additions and 103 deletions

View File

@@ -31,18 +31,4 @@ public class WxOpenMpServiceImpl extends WxMpServiceImpl {
return wxOpenComponentService.getAuthorizerAccessToken(appId, forceRefresh);
}
@Override
public WxMpOAuth2AccessToken oauth2getAccessToken(String code) throws WxErrorException {
return wxOpenComponentService.oauth2getAccessToken(appId, code);
}
@Override
public WxMpOAuth2AccessToken oauth2refreshAccessToken(String refreshToken) throws WxErrorException {
return wxOpenComponentService.oauth2refreshAccessToken(appId, refreshToken);
}
@Override
public String oauth2buildAuthorizationUrl(String redirectURI, String scope, String state) {
return wxOpenComponentService.oauth2buildAuthorizationUrl(appId, redirectURI, scope, state);
}
}