1 Commits

Author SHA1 Message Date
76dd87129d Fix erroneous type declaration in test code
Fixes #3
2023-09-11 21:51:09 +02:00
2 changed files with 1 additions and 3 deletions

View File

@ -37,8 +37,6 @@
#-(or sbcl allegro cmu clisp openmcl lispworks ecl clasp abcl mocl genera mezzano) ...
#:fundamental-binary-input-stream #:fundamental-binary-output-stream
#:stream-read-byte #:stream-write-byte)
#+ecl
(:shadowing-import-from :gray #:stream-element-type)
(:export
#:perform-all-tests
#:perform-deflate-tests

View File

@ -40,6 +40,6 @@
:in-order-to ((test-op (test-op "deflate/test"))))
(defsystem "deflate/test"
:depends-on ("deflate" #+abcl (:require :gray-streams))
:depends-on ("deflate")
:components ((:file "deflate-test"))
:perform (test-op (o c) (symbol-call '#:deflate-test '#:perform-all-tests)))