commit 6cf5697998f0e0fe7a0ffc1343d264b6a44c9cbb parent 8b58d1e02026eb394766efb05e2f779c81abccfc Author: Lukas Henkel <lh@entf.net> Date: Tue, 19 Dec 2023 14:44:45 +0100 Fix tests for day 12 Diffstat:
M | t/day-12.lisp | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/day-12.lisp b/t/day-12.lisp @@ -4,5 +4,5 @@ (define-test test-day-12 () - (assert= 1 (possible-arrangements "???.###" (list 1 1 3))) - (assert= 10 (possible-arrangements "?###????????" (list 3 2 1)))) + (assert= 1 (possible-arrangements (coerce "???.###" 'list) (list 1 1 3))) + (assert= 10 (possible-arrangements (coerce "?###????????" 'list) (list 3 2 1))))