Browse Source

Correcting test template

pull/4/head
Ryan Reed 3 years ago
parent
commit
12bc06320c
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      puzzles/TEMPLATE_test_dayXX.py

+ 4
- 4
puzzles/TEMPLATE_test_dayXX.py View File

@ -37,10 +37,10 @@ def test_example2(example_data2):
@pytest.mark.skip(reason="Not implemented")
def test_part1(day02_data):
assert aoc.part1(day02_data) == ...
def test_part1(dayXX_data):
assert aoc.part1(dayXX_data) == ...
@pytest.mark.skip(reason="Not implemented")
def test_part2(day02_data):
assert aoc.part2(day02_data) == ...
def test_part2(dayXX_data):
assert aoc.part2(dayXX_data) == ...

Loading…
Cancel
Save