Skip to content

Commit

Permalink
Merge pull request #78 from vil02/14_cleanup_tests
Browse files Browse the repository at this point in the history
style: use `get_tests` in `test_adv_2024_14`
  • Loading branch information
vil02 authored Dec 14, 2024
2 parents 53cb830 + 175bb29 commit a85c71d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_adv_2024_14.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

_INPUTS = tu.get_inputs(14, {"p"})

test_solve_a = _INPUTS.get_test(sol.solve_a, {"p": 224438715})
test_solve_b = _INPUTS.get_test(sol.solve_b, {"p": 7603})
test_solve_a, test_solve_b = _INPUTS.get_tests(
(sol.solve_a, sol.solve_b), {"p": (224438715, 7603)}
)

0 comments on commit a85c71d

Please sign in to comment.