Skip to content

Commit

Permalink
The semantics of prefix-of? have changed. Fix the test to reflect that.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynes committed Jul 4, 2012
1 parent dff03a9 commit 2c69e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/useful/seq_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
(let [a [1 2 3], b [1 2], c [2 3], d []]
(is (prefix-of? a b))
(is (prefix-of? a a))
(is (not (prefix-of? b a)))
(is (prefix-of? b a))
(is (not (prefix-of? a c)))
(is (prefix-of? a d))
(is (prefix-of? b d))))
Expand Down

0 comments on commit 2c69e7b

Please sign in to comment.