From e92972db08e2469967097c8f0aa577a0ac3e5c2e Mon Sep 17 00:00:00 2001 From: bom Date: Wed, 19 Jan 2022 17:15:59 +0100 Subject: [PATCH] hopefully fixed last test --- test/test_terraform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_terraform.py b/test/test_terraform.py index 0d471a2..410d436 100644 --- a/test/test_terraform.py +++ b/test/test_terraform.py @@ -187,7 +187,7 @@ APPLY_CASES_0_x = [ [("var_to_output", {"test_var": "test"}, None, 'test_output=test', {}), ("var_to_output", {"test_list_var": ["c", "d"]}, None, 'test_list_output=["c","d",]', {},), ("var_to_output", {"test_map_var": {"c": "c", "d": "d"}}, None, 'test_map_output={"c"="c""d"="d"}', {},), - ("var_to_output", {"test_map_var": {"c": "c", "d": "d"}}, "test_map_var.json", 'test_map_output={"e"="e""f"="f"}', {},), + ("var_to_output", {"test_map_var": {"c": "c", "d": "d"}}, "var_to_output/test_map_var.json", 'test_map_output={"e"="e""f"="f"}', {},), ("var_to_output", {}, None, "\x1b[0m\x1b[1m\x1b[32mApplycomplete!", {"no_color": IsNotFlagged},), ]] APPLY_CASES_1_x = [