Changeset 3357

Show
Ignore:
Timestamp:
06/26/08 12:38:00 (5 months ago)
Author:
ksprotte
Message:

fix bos/web/startup.lisp to play again well with the test-suite

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/projects/bos/test/web/drakma-requests.lisp

    r3300 r3357  
    88            (server (bos.web::init :port ,port-var 
    99                                   :worldpay-test-mode t))) 
     10       (check-type server hunchentoot::server) 
    1011       (unwind-protect 
    1112            (progn ,@body) 
  • trunk/projects/bos/web/startup.lisp

    r3355 r3357  
    5050  (if start-frontend 
    5151      (start-frontend :host host :backend-port port :port frontend-port) 
    52       (warn "frontend not started - to achieve this specify :start-frontend t"))) 
     52      (warn "frontend not started - to achieve this specify :start-frontend t")) 
     53  *webserver*)