From e084321d6801f716daffe3a4df04f52b6e8649cc Mon Sep 17 00:00:00 2001 From: Luc Rubio Date: Sat, 17 Dec 2022 23:07:11 +0100 Subject: [PATCH] Fix test names --- aoc2022/test/day15/python/test_solution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aoc2022/test/day15/python/test_solution.py b/aoc2022/test/day15/python/test_solution.py index c1f1f1e..9e90c3f 100644 --- a/aoc2022/test/day15/python/test_solution.py +++ b/aoc2022/test/day15/python/test_solution.py @@ -38,10 +38,10 @@ def test_manhattanDistance_success(self): # Sensor at x=14, y=3: closest beacon is at x=15, y=3 # Sensor at x=20, y=1: closest beacon is at x=15, y=3 - def test_simulateSandFall_withExample_correctCount(self): + def test_part1_withExample_correctCount(self): self.assertEqual(26, count_not_beacon_positions(self.examples[0], row=10)) - def test_simulateSandFall_withPuzzleInput_correctCount(self): + def test_part2_withPuzzleInput_correctCount(self): self.assertEqual(5112034, count_not_beacon_positions(self.input, row=2000000))