summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-12-22 15:02:02 +0100
committerYann Herklotz <git@yannherklotz.com>2021-12-22 15:02:02 +0100
commit475d382b0baaa085910d6066d3a51943e777b147 (patch)
tree8d18ba97d5eb03e0e11ed799211359c4ecd7aa76 /test
parent771f9fdf08671b2673a7b19d7980f15f2288eb26 (diff)
downloadaoc21-475d382b0baaa085910d6066d3a51943e777b147.tar.gz
aoc21-475d382b0baaa085910d6066d3a51943e777b147.zip
Pass the 4th day in AOC
Diffstat (limited to 'test')
-rw-r--r--test/04.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/04.lisp b/test/04.lisp
index cccaf4e..d003649 100644
--- a/test/04.lisp
+++ b/test/04.lisp
@@ -29,14 +29,14 @@
(deftest 04/test-ex-b (04/aoc)
(let ((result (04/part-b (04/parse-input-direct 04/default-input))))
- (assert-equalp 0 result)))
+ (assert-equalp 1924 result)))
(deftest 04/test-a (04/aoc)
(let ((result (04/part-a (04/parse-input "inputs/04.txt"))))
- (assert-equalp 0 result)))
+ (assert-equalp 51776 result)))
(deftest 04/test-b (04/aoc)
(let ((result (04/part-b (04/parse-input "inputs/04.txt"))))
- (assert-equalp 0 result)))
+ (assert-equalp 16830 result)))
(defun 04/run-tests () (run-suite '04/aoc))