summaryrefslogtreecommitdiff
path: root/cherrypy/test/helper.py
diff options
context:
space:
mode:
authorRobert Brewer <fumanchu@aminus.org>2006-08-05 23:05:52 +0000
committerRobert Brewer <fumanchu@aminus.org>2006-08-05 23:05:52 +0000
commit18b33b51a0183605747f0a2b36e3b464897c01d5 (patch)
treefd03ad9627679849cc25265af81c934e03909370 /cherrypy/test/helper.py
parentac1aeb9f0c7b98fcff1786d1b6806b6c73db0331 (diff)
downloadcherrypy-git-18b33b51a0183605747f0a2b36e3b464897c01d5.tar.gz
Changed server.start to server.quickstart, and server.start_all to server.start.
Diffstat (limited to 'cherrypy/test/helper.py')
-rw-r--r--cherrypy/test/helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cherrypy/test/helper.py b/cherrypy/test/helper.py
index 918bf280..65616c97 100644
--- a/cherrypy/test/helper.py
+++ b/cherrypy/test/helper.py
@@ -97,7 +97,7 @@ def run_test_suite(moduleNames, server, conf):
"""
cherrypy.config.reset()
setConfig(conf)
- cherrypy.server.start(server)
+ cherrypy.server.quickstart(server)
cherrypy.engine.start_with_callback(_run_test_suite_thread,
args=(moduleNames, conf))
@@ -147,7 +147,7 @@ def testmain(conf=None):
conf = {}
setConfig(conf)
try:
- cherrypy.server.start()
+ cherrypy.server.quickstart()
cherrypy.engine.start_with_callback(_test_main_thread)
except KeyboardInterrupt:
cherrypy.server.stop()