From 0af1b042a29811bc5c850267681dc45469981845 Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Mon, 12 Dec 2022 08:51:41 +0100 Subject: Day 9 [WIP] --- day8/test_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'day8/test_init.py') 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 def test_calculate_1d_scenic_score(): - assert 1 * 2 == AssignmentTwo.calculate_1d_scenic_score([3, 5, 3, 5, 3], 1) - assert 1 * 2 == AssignmentTwo.calculate_1d_scenic_score([2, 5, 5, 1, 2], 2) + assert AssignmentTwo.calculate_1d_scenic_score([3, 5, 3, 5, 3], 1) == 1 * 2 + assert AssignmentTwo.calculate_1d_scenic_score([2, 5, 5, 1, 2], 2) == 1 * 2 -- cgit v1.2.3