Changeset 13592


Ignore:
Timestamp:
09/11/11 19:24:13 (12 years ago)
Author:
ehuelsmann
Message:

Remove debug PRINT forms and correct return value expectations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/test/lisp/abcl/mop-tests.lisp

    r13591 r13592  
    309309(deftest dmc-return.1
    310310    (define-method-combination dmc-test-return-foo)
    311   'dmc-test-return-foo)
     311  dmc-test-return-foo)
    312312
    313313(deftest dmc-return.2
    314314    (define-method-combination dmc-test-return-bar :operator and)
    315   'dmc-test-return-bar)
     315  dmc-test-return-bar)
    316316
    317317(deftest dmc-return.3
     
    330330                             (make-method ,form)))
    331331            form)))
    332   'dmc-test-return)
     332  dmc-test-return)
    333333
    334334;; A method combination which originally failed;
     
    490490
    491491(define-method-combination dmc-test-mc.4 ()
    492   ((methods ()))
     492  ((methods *))
    493493  (:arguments object)
    494494  `(unwind-protect
     
    527527  ((method-list *))
    528528  (:arguments arg1 arg2 &aux (extra :extra))
    529   (print (type-of method-list))
    530   (print method-list)
    531529  `(progn ,@(mapcar (lambda (method) `(call-method ,method)) method-list)))
    532530
     
    585583(deftest dmc-test-mc.7a
    586584    (equal (apply #'dmc-test-mc.7 :foo (list 1 2 3 4 5 6 7 8))
    587            '(:foo 8)))
     585           '(:foo 8))
     586  T)
    588587
    589588
Note: See TracChangeset for help on using the changeset viewer.