commit 69e1a93bd58be13057b4f169cac2d3c4735d337a
parent c1af0e38b7b56e77082a3f44eaa249842a057535
Author: Lukas Henkel <lh@entf.net>
Date: Thu, 14 Dec 2023 20:36:22 +0100
:use aoc/day-14
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/day-14.lisp b/t/day-14.lisp
@@ -1,10 +1,10 @@
(defpackage #:aoc-test/day-14
- (:use #:cl #:lisp-unit2))
+ (:use #:cl #:lisp-unit2 #:aoc/day-14))
(in-package #:aoc-test/day-14)
(define-test test-day-14
()
- (let ((aoc/day-14:*minimum-pattern-length* 5))
+ (let ((*minimum-pattern-length* 5))
(multiple-value-bind (task-1 task-2)
(aoc:run-day 14 "O....#....
O.OO#....#