We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfffde commit ef9d465Copy full SHA for ef9d465
1 file changed
client/src/test/java/com/microsoft/durabletask/ErrorHandlingIntegrationTests.java
@@ -24,6 +24,12 @@
24
*/
25
@Tag("integration")
26
public class ErrorHandlingIntegrationTests extends IntegrationTestBase {
27
+ @BeforeEach
28
+ private void startUp() {
29
+ DurableTaskClient client = new DurableTaskGrpcClientBuilder().build();
30
+ client.deleteTaskHub();
31
+ }
32
+
33
@Test
34
void orchestratorException() throws TimeoutException {
35
final String orchestratorName = "OrchestratorWithException";
0 commit comments