Skip to content

Commit

Permalink
fix: uncomment test cases that were left commented out accidentally
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsay-stevens committed Jul 19, 2024
1 parent e8f8fdc commit e2de762
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/xform_test_case/test_bugs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"):
Expand Down

0 comments on commit e2de762

Please sign in to comment.