diff options
Diffstat (limited to 'cherrypy/test/modpy.py')
-rw-r--r-- | cherrypy/test/modpy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cherrypy/test/modpy.py b/cherrypy/test/modpy.py index b4c45193..2d9f5ef1 100644 --- a/cherrypy/test/modpy.py +++ b/cherrypy/test/modpy.py @@ -31,7 +31,7 @@ curdir = os.path.join(os.getcwd(), os.path.dirname(__file__)) import re import time -import test +from cherrypy import test def read_process(cmd, args=""): @@ -124,7 +124,7 @@ class ModPythonTestHarness(test.TestHarness): use_wsgi = False def _run(self, conf): - import webtest + from cherrypy import webtest webtest.WebCase.PORT = self.port print print "Running tests:", self.server |