Skip to content

Commit a2665d6

Browse files
committed
Fixed test class name
1 parent 1c4f60e commit a2665d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_day8.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"""
4242

4343

44-
class Day7Test(unittest.TestCase):
45-
def test_day7_part1(self):
44+
class Day8Test(unittest.TestCase):
45+
def test_day8(self):
4646
lines = [line.strip() for line in data.split("\n") if len(line.strip()) > 0]
4747
instructions = parse_instructions(lines)
4848
self.assertEqual(get_part1_answer(instructions), 5)

0 commit comments

Comments
 (0)