diff --git a/tests/xform_test_case/test_bugs.py b/tests/xform_test_case/test_bugs.py index 2db4ef66..c022a812 100644 --- a/tests/xform_test_case/test_bugs.py +++ b/tests/xform_test_case/test_bugs.py @@ -24,12 +24,12 @@ def test_conversion_raises(self): """Should find that conversion results in an error being raised by pyxform.""" cases = ( ("group_name_test.xls", "[row : 3] Question or group with no name."), - # ( - # "not_closed_group_test.xls", - # "Unmatched begin statement: group (open_group_1)", - # ), - # ("duplicate_columns.xlsx", "Duplicate column header: label"), - # ("calculate_without_calculation.xls", "[row : 34] Missing calculation."), + ( + "not_closed_group_test.xls", + "Unmatched begin statement: group (open_group_1)", + ), + ("duplicate_columns.xlsx", "Duplicate column header: label"), + ("calculate_without_calculation.xls", "[row : 34] Missing calculation."), ) for i, (case, err_msg) in enumerate(cases): with self.subTest(msg=f"{i}: {case}"):