|
@@ -62,7 +62,7 @@ abstract class IntegrationTest {
|
|
|
private static GenericContainer backend;
|
|
|
|
|
|
@BeforeAll
|
|
|
- static void setupSpec() {
|
|
|
+ static void setup() {
|
|
|
backend =
|
|
|
new GenericContainer<>(
|
|
|
"ghcr.io/open-telemetry/opentelemetry-java-instrumentation/smoke-test-fake-backend:20221127.3559314891")
|
|
@@ -119,7 +119,7 @@ abstract class IntegrationTest {
|
|
|
}
|
|
|
|
|
|
@AfterEach
|
|
|
- void cleanup() throws IOException {
|
|
|
+ void reset() throws IOException {
|
|
|
client
|
|
|
.newCall(
|
|
|
new Request.Builder()
|
|
@@ -134,7 +134,7 @@ abstract class IntegrationTest {
|
|
|
}
|
|
|
|
|
|
@AfterAll
|
|
|
- static void cleanupSpec() {
|
|
|
+ static void cleanup() {
|
|
|
backend.stop();
|
|
|
}
|
|
|
|