From 0daf492b85f13ecb8a04b81af41d848bc20f8d90 Mon Sep 17 00:00:00 2001 From: amunger Date: Mon, 16 Sep 2024 13:37:25 -0700 Subject: [PATCH] fix test --- python_files/tests/test_get_variable_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_files/tests/test_get_variable_info.py b/python_files/tests/test_get_variable_info.py index 8c617a216192..188a9f393288 100644 --- a/python_files/tests/test_get_variable_info.py +++ b/python_files/tests/test_get_variable_info.py @@ -68,7 +68,7 @@ def test_list(): def test_dict(): found = assert_variable_found({"a": 1, "b": 2}, "{'a': 1, 'b': 2}", "dict", None) assert found["hasNamedChildren"] - assert_property(found, "a", "2") + assert_property(found, "a", "1") assert_property(found, "b", "2")