X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-oodml.lisp;h=804248bcb09ff262a94145124a828c2e16cd1df5;hb=1c5166f0e106b086a5f50a7ce5af2f50d6c6b58e;hp=7e69d6e3c51b84b30f60fdd36de15ffe3fe72f6f;hpb=9f88a2a19d13afb9ab7f35ad1df522d00301b56d;p=clsql.git diff --git a/tests/test-oodml.lisp b/tests/test-oodml.lisp index 7e69d6e..804248b 100644 --- a/tests/test-oodml.lisp +++ b/tests/test-oodml.lisp @@ -85,9 +85,9 @@ (mapcar #'(lambda (pair) (list (typep (car pair) 'address) - (typep (cdr pair) 'employee-address) + (typep (second pair) 'employee-address) (slot-value (car pair) 'addressid) - (slot-value (cdr pair) 'addressid))) + (slot-value (second pair) 'addressid))) (employee-addresses employee1)) ((t t 1 1) (t t 2 2))) @@ -95,9 +95,9 @@ (mapcar #'(lambda (pair) (list (typep (car pair) 'address) - (typep (cdr pair) 'employee-address) + (typep (second pair) 'employee-address) (slot-value (car pair) 'addressid) - (slot-value (cdr pair) 'addressid))) + (slot-value (second pair) 'addressid))) (employee-addresses employee2)) ((t t 2 2)))