summaryrefslogtreecommitdiff
path: root/tests/test_request.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2006-06-09 05:29:18 +0000
committerpjenvey <devnull@localhost>2006-06-09 05:29:18 +0000
commit3b9e5e113f5c5dfa093f33fb215aa03dcd14f33a (patch)
treea16d6a15a2f5d557b13c43021def3c58943ac82c /tests/test_request.py
parentd5fe8730755b970608e0fbb3ecd3d148dc47a9ec (diff)
downloadpaste-3b9e5e113f5c5dfa093f33fb215aa03dcd14f33a.tar.gz
fixed missing import
Diffstat (limited to 'tests/test_request.py')
-rw-r--r--tests/test_request.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_request.py b/tests/test_request.py
index e634f30..4cd8077 100644
--- a/tests/test_request.py
+++ b/tests/test_request.py
@@ -1,8 +1,9 @@
# (c) 2005 Ben Bangert
# This module is part of the Python Paste Project and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
-from paste.request import *
from paste.fixture import *
+from paste.request import *
+from paste.wsgiwrappers import WSGIRequest
from py.test import raises
def simpleapp(environ, start_response):