From a017fef121c69801bc196ca871e51630a6adb760 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Tue, 6 Dec 2022 14:44:18 +0100 Subject: [PATCH] Removed refresh=True from plan() call --- tests/fixtures.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/fixtures.py b/tests/fixtures.py index 6d0a53506..2f92023a1 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -87,8 +87,7 @@ def plan_summary(module_path, basedir, tf_var_files=None, **tf_vars): tf = tftest.TerraformTest(test_path, binary=binary) tf.setup(upgrade=True) tf_var_files = [(basedir / x).resolve() for x in tf_var_files or []] - plan = tf.plan(output=True, refresh=True, tf_var_file=tf_var_files, - tf_vars=tf_vars) + plan = tf.plan(output=True, tf_var_file=tf_var_files, tf_vars=tf_vars) # compute resource type counts and address->values map values = {}