X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-fdml.lisp;h=906852be6d49d1d645f9e334167be60cc1b45863;hb=a99f275949c7e638a1e7fcf2ebfbb21f0a8c448a;hp=71a3a9baa04d5bfbd4187032f6103691f71e6f06;hpb=e17f07ac3185371f7d2c989c9780f70767296a54;p=clsql.git diff --git a/tests/test-fdml.lisp b/tests/test-fdml.lisp index 71a3a9b..906852b 100644 --- a/tests/test-fdml.lisp +++ b/tests/test-fdml.lisp @@ -337,16 +337,16 @@ "Josef Stalin" "Leon Trotsky" "Boris Yeltsin")) (deftest :fdml/loop/2 - (loop for emplid + (loop for (emplid) being each tuple in [select [emplid] :from [address] :order-by [emplid]] - collect emplid) - ((1) (2))) + collect emplid) + (1 2)) (deftest :fdml/loop/3 (loop for emplid being each tuple in - [select [emplid] :from [address] :order-by [emplid] :flatp t] + [select [emplid] :from [address] :order-by [emplid]] collect emplid) (1 2))