From 1b118058677c29f97a9af742034a146b9c7e46cb Mon Sep 17 00:00:00 2001 From: Ludovic DEHON Date: Mon, 23 Sep 2024 12:29:05 +0200 Subject: [PATCH] chore(test): fix falling test --- .../java/io/kestra/plugin/templates/ExampleRunnerTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/java/io/kestra/plugin/templates/ExampleRunnerTest.java b/src/test/java/io/kestra/plugin/templates/ExampleRunnerTest.java index 9102bbc..bc47411 100644 --- a/src/test/java/io/kestra/plugin/templates/ExampleRunnerTest.java +++ b/src/test/java/io/kestra/plugin/templates/ExampleRunnerTest.java @@ -1,6 +1,7 @@ package io.kestra.plugin.templates; import io.kestra.core.junit.annotations.KestraTest; +import io.kestra.core.queues.QueueException; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import io.kestra.core.models.executions.Execution; @@ -44,7 +45,7 @@ protected void init() throws IOException, URISyntaxException { @SuppressWarnings("unchecked") @Test - void flow() throws TimeoutException { + void flow() throws TimeoutException, QueueException { Execution execution = runnerUtils.runOne(null, "io.kestra.templates", "example"); assertThat(execution.getTaskRunList(), hasSize(3));