Skip to content

Commit 8f4be28

Browse files
committed
chore: Remove not implemented code
Signed-off-by: Javier Aliaga <[email protected]>
1 parent 864f62c commit 8f4be28

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

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

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

44
package io.dapr.durabletask;
55

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;
10-
import org.junit.jupiter.api.extension.ExtendWith;
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;
119

1210
import java.time.Duration;
1311
import java.util.concurrent.TimeoutException;
1412
import java.util.concurrent.atomic.AtomicBoolean;
1513
import java.util.concurrent.atomic.AtomicInteger;
1614

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

2020
/**
2121
* These integration tests are designed to exercise the core, high-level error-handling features of the Durable Task
@@ -29,8 +29,6 @@
2929
public class ErrorHandlingIntegrationTests extends IntegrationTestBase {
3030
@BeforeEach
3131
private void startUp() {
32-
DurableTaskClient client = new DurableTaskGrpcClientBuilder().build();
33-
client.deleteTaskHub();
3432
}
3533

3634
@RetryingTest

0 commit comments

Comments
 (0)