Skip to content

Commit

Permalink
test: remove public modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
mvarlic committed Oct 3, 2024
1 parent 1439001 commit 8475cfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/webpayplus/OneclickMallDeferredTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void delete() throws IOException, InscriptionDeleteException {
assertTrue(response);
}
@Test
public void deleteNotFound() throws IOException {
void deleteNotFound() throws IOException {
String url = String.format("/%s/inscriptions", apiUrl);
setResponseDeleteError(url, HttpStatusCode.NOT_FOUND_404);

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/webpayplus/OneclickMallTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void delete() throws IOException, InscriptionDeleteException {
}

@Test
public void deleteNotFound() throws IOException {
void deleteNotFound() throws IOException {
String url = String.format("/%s/inscriptions", apiUrl);
setResponseDeleteError(url, HttpStatusCode.NOT_FOUND_404);

Expand Down

0 comments on commit 8475cfa

Please sign in to comment.