From 27f98abd6fa8bae654c211cd05f941bd7bf13bb2 Mon Sep 17 00:00:00 2001 From: ThomasLohnert Date: Wed, 22 Jul 2020 17:05:47 +0100 Subject: [PATCH 1/2] Macro value type as in reality --- tests/refl_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/refl_init.py b/tests/refl_init.py index 421b68a4d..683c8b5b0 100644 --- a/tests/refl_init.py +++ b/tests/refl_init.py @@ -21,8 +21,8 @@ test_var_path = os.path.join(test_config_path, "var_init") REFL_MACROS = json.dumps({"CONFIG_FILE": "config_init.py", # tested implicitly by entire suite - "OPTIONAL_1": True, - "OPTIONAL_2": False, }) + "OPTIONAL_1": "1", + "OPTIONAL_2": "0", }) IOCS = [ { From 0a8f33417fcc463e08f0fd5d9a7c93988d352768 Mon Sep 17 00:00:00 2001 From: ThomasLohnert Date: Fri, 24 Jul 2020 13:38:43 +0100 Subject: [PATCH 2/2] Change macro values --- tests/refl_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/refl_init.py b/tests/refl_init.py index 683c8b5b0..0fab9173e 100644 --- a/tests/refl_init.py +++ b/tests/refl_init.py @@ -21,8 +21,8 @@ test_var_path = os.path.join(test_config_path, "var_init") REFL_MACROS = json.dumps({"CONFIG_FILE": "config_init.py", # tested implicitly by entire suite - "OPTIONAL_1": "1", - "OPTIONAL_2": "0", }) + "OPTIONAL_1": "True", + "OPTIONAL_2": "False", }) IOCS = [ {