From f3c4027924c56225d1bc6afbe57c3c83be072a0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Fri, 13 Oct 2023 11:38:41 +0200 Subject: [PATCH] feat: multi-tenant --- src/test/java/io/kestra/plugin/dbt/cli/BuildRunnerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/io/kestra/plugin/dbt/cli/BuildRunnerTest.java b/src/test/java/io/kestra/plugin/dbt/cli/BuildRunnerTest.java index 9a911a6..d171a4c 100644 --- a/src/test/java/io/kestra/plugin/dbt/cli/BuildRunnerTest.java +++ b/src/test/java/io/kestra/plugin/dbt/cli/BuildRunnerTest.java @@ -41,7 +41,7 @@ protected void init() throws IOException, URISyntaxException { @Test void flow() throws TimeoutException, URISyntaxException { Path project = Path.of(Objects.requireNonNull(BuildRunnerTest.class.getClassLoader().getResource("project")).toURI()); - Execution execution = runnerUtils.runOne("io.kestra.dbt", "full", null, (flow, execution1) -> Map.of("path", project.toAbsolutePath().toUri().getPath()), Duration.ofMinutes(1)); + Execution execution = runnerUtils.runOne(null,"io.kestra.dbt", "full", null, (flow, execution1) -> Map.of("path", project.toAbsolutePath().toUri().getPath()), Duration.ofMinutes(1)); assertThat(execution.getState().getCurrent(), is(State.Type.SUCCESS)); assertThat(execution.getTaskRunList().size(), greaterThan(10));