From a99b112b74adce5be2e35631063624543e69386c Mon Sep 17 00:00:00 2001 From: yuchuehw <137755504+yuchuehw@users.noreply.github.com> Date: Wed, 28 Jun 2023 17:40:38 -0400 Subject: [PATCH] Update test.py --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 094a32f..5b63de6 100644 --- a/test.py +++ b/test.py @@ -5,13 +5,13 @@ def test_solve_single_solution(): # Assert that at least one solution is found assert(solution_found > 0) -def test_solve_multiple_solutions(self): +def test_solve_multiple_solutions(): solver = DigitSolver([2, 4, 6, 8], 12) solution_found = solver.solve() # Assert that multiple solutions are found assert(solution_found > 1) -def test_solve_no_solution(self): +def test_solve_no_solution(): solver = DigitSolver([1, 2, 3, 4], 100) solution_found = solver.solve() # Assert that no solution is found