diff --git a/alexandria-1/tests.lisp b/alexandria-1/tests.lisp
index f998922617ccd368e74dfb9758353628d82ca84b..dc3d9218f341c8036867289895f4ced6b9fadda4 100644
--- a/alexandria-1/tests.lisp
+++ b/alexandria-1/tests.lisp
@@ -2031,9 +2031,12 @@
   t
   t)
 
+;; In CLISP, (eql #C(2 0) 2) => T
+;; but       (eql #C(2 0) 2.0) => NIL
+;; so we need a complex start point
 (deftest iota.fp-start-and-complex-integer-step
     (equal '(#C(0.0 0.0) #C(0.0 2.0) #C(0.0 4.0))
-           (iota 3 :start 0.0 :step #C(0 2)))
+           (iota 3 :start #C(0.0 0.0) :step #C(0 2)))
   t)
 
 (deftest parse-ordinary-lambda-list.1