From c84d7add1c7afbbb59d4d82a5ce5d5a6d5f9a4e1 Mon Sep 17 00:00:00 2001
From: pfdietz <pfdietz@localhost>
Date: Tue, 15 Oct 2002 11:38:44 +0000
Subject: [PATCH] Eliminated two tests that were just wrong: array is not a
 subtype of sequence.

---
 ansi-tests/map.lsp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/ansi-tests/map.lsp b/ansi-tests/map.lsp
index 4e5ad6ab..65082afe 100644
--- a/ansi-tests/map.lsp
+++ b/ansi-tests/map.lsp
@@ -29,13 +29,13 @@
   (map '(vector * 4) #'+ #(1 2 3 4) #(6 6 6 6))
   #(7 8 9 10))
 
-(deftest map-array.7
-  (map 'array #'identity '(a b c d e f))
-  #(a b c d e f))
+;;; (deftest map-array.7
+;;;  (map 'array #'identity '(a b c d e f))
+;;;  #(a b c d e f))
 
-(deftest map-array.8
-  (map 'simple-array #'identity '(a b c d e f))
-  #(a b c d e f))
+;;; (deftest map-array.8
+;;;   (map 'simple-array #'identity '(a b c d e f))
+;;;   #(a b c d e f))
 
 (deftest map-array.9
   (map 'simple-vector #'identity '(a b c d e f))
-- 
GitLab