From 86d6e226d781daeb535959bb72cdde7d4666374f Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Wed, 15 Nov 2023 14:36:16 -0600 Subject: [PATCH] fix test --- tests/integration/027_custom_flow/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/027_custom_flow/main.tf b/tests/integration/027_custom_flow/main.tf index afc8d06e..83893bf4 100644 --- a/tests/integration/027_custom_flow/main.tf +++ b/tests/integration/027_custom_flow/main.tf @@ -23,11 +23,11 @@ resource "env0_custom_flow" "test" { } data "env0_custom_flow" "test" { - name = env0_custom_flow.test.name + name = env0_custom_flow.test.name + depends_on = [env0_custom_flow.test] } resource "env0_custom_flow_assignment" "assignment" { - depends_on = [env0_custom_flow.test] scope_id = env0_project.project.id template_id = data.env0_custom_flow.test.id }