summaryrefslogtreecommitdiff
path: root/tests/test_request.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2006-12-22 03:52:19 +0000
committerpjenvey <devnull@localhost>2006-12-22 03:52:19 +0000
commit8aa0c58cfb01e8f1c615c8c0d7e910c62ec8a8b7 (patch)
tree769f62a8d0f6e6d479d51b0453646cdf81c63778 /tests/test_request.py
parentc34d635fad648f8646cb86bfa85171457d9fa3e2 (diff)
downloadpaste-8aa0c58cfb01e8f1c615c8c0d7e910c62ec8a8b7.tar.gz
fixed parse_dict_querystring returning empty dicts instead of MultiDicts
Diffstat (limited to 'tests/test_request.py')
-rw-r--r--tests/test_request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_request.py b/tests/test_request.py
index 0915cb0..6f29625 100644
--- a/tests/test_request.py
+++ b/tests/test_request.py
@@ -18,7 +18,7 @@ def test_gets():
app = TestApp(simpleapp)
res = app.get('/')
assert 'Hello' in res
- assert "get is {}" in res
+ assert "get is MultiDict([])" in res
res = app.get('/?name=george')
res.mustcontain("get is MultiDict([('name', 'george')])")