Skip to content

Commit baa8dd7

Browse files
committed
chore: Fix merge
Signed-off-by: Javier Aliaga <[email protected]>
1 parent 1eaf6e9 commit baa8dd7

File tree

2 files changed

+6
-18
lines changed

2 files changed

+6
-18
lines changed

client/src/test/java/io/dapr/durabletask/ErrorHandlingIntegrationTests.java

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,18 @@
33

44
package io.dapr.durabletask;
55

6-
import static org.junit.jupiter.api.Assertions.assertEquals;
7-
import static org.junit.jupiter.api.Assertions.assertNotNull;
8-
import static org.junit.jupiter.api.Assertions.assertTrue;
6+
import org.junit.jupiter.api.Tag;
7+
import org.junit.jupiter.api.Test;
8+
import org.junit.jupiter.params.ParameterizedTest;
9+
import org.junit.jupiter.params.provider.ValueSource;
910

1011
import java.time.Duration;
1112
import java.util.concurrent.TimeoutException;
1213
import java.util.concurrent.atomic.AtomicBoolean;
1314
import java.util.concurrent.atomic.AtomicInteger;
1415

1516
import org.junit.jupiter.api.BeforeEach;
16-
import org.junit.jupiter.api.Tag;
17-
import org.junit.jupiter.api.extension.ExtendWith;
18-
import org.junit.jupiter.params.provider.ValueSource;
17+
import static org.junit.jupiter.api.Assertions.*;
1918

2019
/**
2120
* These integration tests are designed to exercise the core, high-level error-handling features of the Durable Task
@@ -26,11 +25,6 @@
2625
*/
2726
@Tag("integration")
2827
public class ErrorHandlingIntegrationTests extends IntegrationTestBase {
29-
30-
@BeforeEach
31-
private void startUp() {
32-
}
33-
3428
@Test
3529
void orchestratorException() throws TimeoutException {
3630
final String orchestratorName = "OrchestratorWithException";
@@ -315,4 +309,4 @@ private FailureDetails retryOnFailuresCoreTest(
315309
return details;
316310
}
317311
}
318-
}
312+
}

client/src/test/java/io/dapr/durabletask/IntegrationTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ public class IntegrationTests extends IntegrationTestBase {
5454
// All tests that create a server should save it to this variable for proper shutdown
5555
private DurableTaskGrpcWorker server;
5656

57-
// Before whole test suite, delete the task hub
58-
@BeforeEach
59-
private void startUp() {
60-
61-
}
62-
6357
@AfterEach
6458
private void shutdown() throws InterruptedException {
6559
if (this.server != null) {

0 commit comments

Comments
 (0)