diff options
| author | 2022-12-12 08:51:41 +0100 | |
|---|---|---|
| committer | 2022-12-12 08:51:41 +0100 | |
| commit | 0af1b042a29811bc5c850267681dc45469981845 (patch) | |
| tree | 45c22e15c932fac2e56a20b17207a8048d28f7b4 /day8/test_init.py | |
| parent | cdd7aec2e28e65886c02bf2729bc8d2032f0ef6e (diff) | |
| download | 2022-0af1b042a29811bc5c850267681dc45469981845.tar.gz 2022-0af1b042a29811bc5c850267681dc45469981845.tar.bz2 2022-0af1b042a29811bc5c850267681dc45469981845.zip | |
Day 9 [WIP]
Diffstat (limited to 'day8/test_init.py')
| -rw-r--r-- | day8/test_init.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/day8/test_init.py b/day8/test_init.py index 6fd0e2b..16be2ec 100644 --- a/day8/test_init.py +++ b/day8/test_init.py | |||
| @@ -3,5 +3,5 @@ from day8 import AssignmentTwo | |||
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | def test_calculate_1d_scenic_score(): | 5 | def test_calculate_1d_scenic_score(): |
| 6 | assert 1 * 2 == AssignmentTwo.calculate_1d_scenic_score([3, 5, 3, 5, 3], 1) | 6 | assert AssignmentTwo.calculate_1d_scenic_score([3, 5, 3, 5, 3], 1) == 1 * 2 |
| 7 | assert 1 * 2 == AssignmentTwo.calculate_1d_scenic_score([2, 5, 5, 1, 2], 2) | 7 | assert AssignmentTwo.calculate_1d_scenic_score([2, 5, 5, 1, 2], 2) == 1 * 2 |
