Remove public modifier on JUnit5 lifecycle methods
See gh-17292
This commit is contained in:
@@ -68,7 +68,7 @@ public class DevToolsIntegrationTests {
|
||||
}
|
||||
|
||||
@AfterEach
|
||||
public void stopApplication() throws InterruptedException {
|
||||
void stopApplication() throws InterruptedException {
|
||||
this.launchedApplication.stop();
|
||||
}
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ public class DevToolsWithLazyInitializationIntegrationTests {
|
||||
}
|
||||
|
||||
@AfterEach
|
||||
public void stopApplication() throws InterruptedException {
|
||||
void stopApplication() throws InterruptedException {
|
||||
this.launchedApplication.stop();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user