From 3a8540b9779caf1b9914ebaf8c83bc00defdf85e Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Sat, 12 Oct 2002 01:46:04 +0000 Subject: [PATCH] Fixed busted test SETF-VALUES.2 as detected by running against CMU CL. --- ansi-tests/places.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansi-tests/places.lsp b/ansi-tests/places.lsp index c40798ab..dd10704d 100644 --- a/ansi-tests/places.lsp +++ b/ansi-tests/places.lsp @@ -140,7 +140,7 @@ (let ((x nil) (y nil) (z nil)) (setf (values x y z) (values 1 2 3)) (values z y x)) - z y x) + 3 2 1) (deftest setf-values.3 (let ((x nil) (y nil) (z nil)) -- GitLab