From 0971466b069e798566c9ebfaec61107b408dbd0f Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Mon, 5 Feb 2024 12:13:52 -0600 Subject: [PATCH] fix integration test --- tests/integration/018_module/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/018_module/main.tf b/tests/integration/018_module/main.tf index f38a7059..ecd10433 100644 --- a/tests/integration/018_module/main.tf +++ b/tests/integration/018_module/main.tf @@ -26,7 +26,7 @@ resource "env0_module" "test_module_with_test_enabled" { github_installation_id = var.second_run ? 32112 : null path = var.second_run ? "/cool1" : "/cool2" tag_prefix = var.second_run ? "t2" : "t1" - module_test_enabled = var.second_run ? true : false - run_tests_on_pull_request = var.second_run ? true : false + module_test_enabled = var.second_run ? false : true + run_tests_on_pull_request = var.second_run ? false : true opentofu_version = var.second_run ? "" : "1.6.0" }