Skip to content

Commit

Permalink
removed test codes
Browse files Browse the repository at this point in the history
  • Loading branch information
xuelianhan007 committed Dec 2, 2024
1 parent a43fd46 commit 8e7a181
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ void givenBuyer_whenCreate_thenOK() {
HttpStatus.OK.value(),
null,
bodyStr -> {
log.info(bodyStr);
assertThat(bodyStr, hasJsonPath("$.data", notNullValue()));
assertThat(bodyStr, hasJsonPath("$.data.buyerToken", notNullValue()));
assertThat(bodyStr, hasJsonPath("$.data.buyerToken.accessToken", notNullValue()));
Expand All @@ -85,7 +84,6 @@ void givenBuyer_whenSearch_thenOK() {
HttpStatus.OK.value(),
null,
bodyStr -> {
log.info(bodyStr);
assertThat(bodyStr, Matchers.notNullValue());
assertThat(bodyStr, hasJsonPath("$.data.data", hasSize(1)));
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ public static class BuyerInfo {
private String buyerId;
private String companyName;
private String envId;
private String role;
}
}

0 comments on commit 8e7a181

Please sign in to comment.