Skip to content

Commit

Permalink
Reduce diff
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSimmons committed Jun 5, 2023
1 parent f0ab934 commit 8119fcd
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 12 deletions.
4 changes: 3 additions & 1 deletion src/test/java/AuthFailureTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ void systemErrorOnAuthentication() throws Exception {
}

@AfterEach
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}

private void createMock(final int statusCode) {
final MockServerClient client = new MockServerClient("127.0.0.1", 1081);
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/CustomRequestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,5 +211,7 @@ void customRequestGetWithHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/DownloadImagesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,7 @@ void downloadImagesWithProductType() throws Exception {


@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/DownloadVideosTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,7 @@ void downloadVideosWithSize() throws Exception {


@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/ImagesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,7 @@ void imagesWithIds() throws Exception {


@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/SearchImagesCreativeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -468,5 +468,7 @@ void searchImagesCreativeWithCustomHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/SearchImagesEditorialTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -559,5 +559,7 @@ void searchImagesEditorialWithCustomHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/SearchImagesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -504,5 +504,7 @@ void searchImagesWithCustomHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/SearchVideosCreativeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,5 +323,7 @@ void searchVideosCreativeWithCustomHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/SearchVideosEditorialTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,5 +359,7 @@ void searchVideosEditorialWithCustomHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/SearchVideosTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -361,5 +361,7 @@ void searchVideosWithCustomHeader() throws Exception {
}

@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}
4 changes: 3 additions & 1 deletion src/test/java/VideosTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ void videosWithIds() throws Exception {


@AfterAll
public void stopProxy() { stopMockServers(); }
public void stopProxy() {
stopMockServers();
}
}

0 comments on commit 8119fcd

Please sign in to comment.