summaryrefslogtreecommitdiffstats
path: root/test/03.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'test/03.lisp')
-rw-r--r--test/03.lisp28
1 files changed, 13 insertions, 15 deletions
diff --git a/test/03.lisp b/test/03.lisp
index 000ece8..cc8085f 100644
--- a/test/03.lisp
+++ b/test/03.lisp
@@ -2,21 +2,19 @@
(defsuite 03/aoc (aoc))
-(defvar 03/default-input nil)
-
-(setf 03/default-input
- '("00100"
- "11110"
- "10110"
- "10111"
- "10101"
- "01111"
- "00111"
- "11100"
- "10000"
- "11001"
- "00010"
- "01010"))
+(defvar 03/default-input
+ '("00100"
+ "11110"
+ "10110"
+ "10111"
+ "10101"
+ "01111"
+ "00111"
+ "11100"
+ "10000"
+ "11001"
+ "00010"
+ "01010"))
(deftest 03/test-ex-a (03/aoc)
(let ((result (03/part-a (03/parse-input-direct 03/default-input))))