summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-12-22 18:34:27 +0100
committerYann Herklotz <git@yannherklotz.com>2021-12-22 18:34:27 +0100
commit310d8d21bfc8a024c9a469a1f39a2370008fd9ea (patch)
tree3a74bb424c2ffd1be2b8c59cf0dc36316e560760 /test
parent8572c23e969af73092fe99a0e89b4f94159cb032 (diff)
downloadaoc21-310d8d21bfc8a024c9a469a1f39a2370008fd9ea.tar.gz
aoc21-310d8d21bfc8a024c9a469a1f39a2370008fd9ea.zip
Add day 5 to aoc
Diffstat (limited to 'test')
-rw-r--r--test/05.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/05.lisp b/test/05.lisp
index 8a717d0..4aa8883 100644
--- a/test/05.lisp
+++ b/test/05.lisp
@@ -20,14 +20,14 @@
(deftest 05/test-ex-b (05/aoc)
(let ((result (05/part-b (05/parse-input-direct 05/default-input))))
- (assert-equalp 0 result)))
+ (assert-equalp 12 result)))
(deftest 05/test-a (05/aoc)
(let ((result (05/part-a (05/parse-input "inputs/05.txt"))))
- (assert-equalp 0 result)))
+ (assert-equalp 7380 result)))
(deftest 05/test-b (05/aoc)
(let ((result (05/part-b (05/parse-input "inputs/05.txt"))))
- (assert-equalp 0 result)))
+ (assert-equalp 21373 result)))
(defun 05/run-tests () (run-suite '05/aoc))