Skip to content

Commit 94d9801

Browse files
committed
fix
1 parent 52b19cf commit 94d9801

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/recursion_test.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,10 @@
157157
(split-into-monotonics [0 5 4 7 1 3]) => '((0 5) (4 7) (1 3)))
158158

159159
(facts "permutations"
160-
(permutations []) => [[]]
160+
(permutations []) => [empty?]
161161
(count (permutations (range 5))) => 120
162162
(permutations [1 5 3])
163-
=> (just [[1 5 3] [5 1 3] [5 3 1] [1 3 5] [3 1 5] [3 5 1]]
163+
=> (just [1 5 3] [5 1 3] [5 3 1] [1 3 5] [3 1 5] [3 5 1]
164164
:in-any-order))
165165

166166
(facts "powerset"

0 commit comments

Comments
 (0)