mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
cleanup
This commit is contained in:
@@ -48,7 +48,7 @@ public abstract class BaseIT {
|
||||
private String webSocketUrl;
|
||||
|
||||
@BeforeEach
|
||||
void init() throws IOException {
|
||||
void beforeEach() throws IOException {
|
||||
this.mockServerClient = ClientAndServer.startClientAndServer(0);
|
||||
|
||||
this.feedUrl = "http://localhost:" + mockServerClient.getPort() + "/";
|
||||
@@ -62,7 +62,7 @@ public abstract class BaseIT {
|
||||
}
|
||||
|
||||
@AfterEach
|
||||
void cleanup() {
|
||||
void afterEach() {
|
||||
if (this.mockServerClient != null) {
|
||||
this.mockServerClient.close();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user