Group questions first part

This commit is contained in:
2021-01-10 21:04:31 -05:00
parent 9b90743cc1
commit 784e11a58b
5 changed files with 66 additions and 3 deletions

View File

@@ -17,7 +17,5 @@ def test_solution(capsys):
expected_output = (HERE / "test-output").read_text().splitlines()
assert expected_output == [
l
for l in capsys.readouterr().out.splitlines()
if not l.startswith("highest_seat")
l for l in capsys.readouterr().out.splitlines() if l.startswith("counts_sum=")
]