Skip to content

Commit

Permalink
Fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
loociano committed Dec 17, 2022
1 parent 3a8e8ff commit e084321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aoc2022/test/day15/python/test_solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))


Expand Down

0 comments on commit e084321

Please sign in to comment.