From: Alfredo Beaumont Date: Fri, 10 May 2013 14:46:54 +0000 (+0200) Subject: [test] Remove comments about EQUAL not being properly defined for lists X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=abb26cc82d4d3eb4afbbcc854e96f5a32bb24843;hp=15ebaa6e202e3303266ebc7e9e2b3e51326683a2;p=jscl.git [test] Remove comments about EQUAL not being properly defined for lists --- diff --git a/tests/list.lisp b/tests/list.lisp index d96c7db..1296166 100644 --- a/tests/list.lisp +++ b/tests/list.lisp @@ -1,8 +1,5 @@ ;; Tests for list functions -;; TODO: EQUAL doesn't compare lists correctly at the moment. -;; Once it does the lists can be compared directly in many of these tests - ; COPY-TREE (test (let* ((foo (list '(1 2) '(3 4))) (bar (copy-tree foo))) @@ -80,7 +77,6 @@ (test (equal (intersection '((1) (2)) '((2) (3)) :test #'equal) '((2)))) ; SUBST -; Can't really test this until EQUAL works properly on lists ; POP (test (let* ((foo '(1 2 3))