diff --git a/ansi-tests/subtypep-complex.lsp b/ansi-tests/subtypep-complex.lsp
index 2870e499329a40d6e37b81344759218d319d0603..b4203671bf7b85a662141ea8431b1b019d484fe5 100644
--- a/ansi-tests/subtypep-complex.lsp
+++ b/ansi-tests/subtypep-complex.lsp
@@ -64,16 +64,20 @@
 	  (subtypep* ucpt1 ucpt2)
 	(multiple-value-bind
 	    (ucpt-sub2? good2?)
-	    (subtypep* ucpt1 ucpt2)
+	    (subtypep* ucpt2 ucpt1)
 	  (cond
+	   ;; the second is not a subtype of the first
 	   ((and good2? ucpt-sub1? (not ucpt-sub2?))
 	    (assert good1?)
 	    (unless (equal result '(nil t))
 	      (list (list :case2 t1 t2 ucpt1 ucpt2 result))))
+	   ;; the first is not a subtype of the second
 	   ((and good1? (not ucpt-sub1?) ucpt-sub2?)
 	    (assert good2?)
 	    (unless (equal result '(nil t))
 	      (list (list :case3 t1 t2 ucpt1 ucpt2 result))))
+	   ;; they are both subtypes of each other, and so represent
+	   ;; the same set of objects
 	   ((and ucpt-sub1? ucpt-sub2?)
 	    (assert good1?)
 	    (assert good2?)