From 2cc7c5a4f72f15513fa4ef067a76e8c706e3a8bd Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 4 Sep 2014 09:48:04 -0700 Subject: [PATCH] attempt to get all save_map tests working cross platform --- tests/python_tests/save_map_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/python_tests/save_map_test.py b/tests/python_tests/save_map_test.py index 48fdf70e3..2a711b361 100644 --- a/tests/python_tests/save_map_test.py +++ b/tests/python_tests/save_map_test.py @@ -54,7 +54,8 @@ def compare_map(xml): def test_compare_map(): good_maps = glob.glob("../data/good_maps/*.xml") # remove one map that round trips CDATA differently, but this is okay - #good_maps.remove('../data/good_maps/empty_parameter2.xml') + ignorable = os.path.join('..','data','good_maps','empty_parameter2.xml') + good_maps.remove(ignorable) for m in good_maps: compare_map(m)