Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update weixin-java-miniapp/src/test/java/cn/binarywang/wx/miniapp/api…
…/impl/WxMaXPayServiceImplTest.java

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
binarywang and Copilot authored Jul 24, 2025
commit db54dd9abcfcb89e0eeb91d48a95819983a64a25
Original file line number Diff line number Diff line change
Expand Up @@ -277,14 +277,14 @@ public void testCreateFundsBill() throws Exception {

@Test
public void testBindTransferAccount() throws Exception {
WxMaXPayBindTransferAccoutRequest request = WxMaXPayBindTransferAccoutRequest.builder()
WxMaXPayBindTransferAccountRequest request = WxMaXPayBindTransferAccountRequest.builder()
.env(WxMaConstants.XPayEnv.PRODUCT)
.transferAccountOrgName("")
.transferAccountUid(0L)
.build();
WxMaXPaySigParams sigParams = new WxMaXPaySigParams();
sigParams.setAppKey("");
WxMaBaseResponse response = this.wxService.getWxMaXPayService().bindTransferAccout(request, sigParams);
WxMaBaseResponse response = this.wxService.getWxMaXPayService().bindTransferAccount(request, sigParams);
assertNotNull(response);
}

Expand Down