Skip to content

Commit

Permalink
chore(test): fix falling test
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Sep 23, 2024
1 parent 8c41f4e commit 1b11805
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -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));
Expand Down

0 comments on commit 1b11805

Please sign in to comment.