diff options
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 |
