diff options
author | Robert Brewer <fumanchu@aminus.org> | 2006-08-24 06:35:47 +0000 |
---|---|---|
committer | Robert Brewer <fumanchu@aminus.org> | 2006-08-24 06:35:47 +0000 |
commit | 27d3a90cc608f4efa0e6b6ca1ba48a995356b5ef (patch) | |
tree | 94403d22bdee74da9518a3ecc3d76272b4c43a8d /cherrypy/test/modpy.py | |
parent | 3a594e18c290cd8bf62870b7195957fbb5966fc5 (diff) | |
download | cherrypy-git-27d3a90cc608f4efa0e6b6ca1ba48a995356b5ef.tar.gz |
Made all imports absolute "just in case" for Python 2.5.
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 |