summaryrefslogtreecommitdiff
path: root/tests/test_request.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2006-07-25 22:22:52 +0000
committerpjenvey <devnull@localhost>2006-07-25 22:22:52 +0000
commit2609e41126e646e5339a0f48c26e366adf98b06e (patch)
tree5175cfa0bd3f9e9c2aac987644524aac2654c10f /tests/test_request.py
parent6ac1b315d366733f2b43956696a2efbd6e2f00ef (diff)
downloadpaste-2609e41126e646e5339a0f48c26e366adf98b06e.tar.gz
renamed the multidict class to MultiDict
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 115ff71..0915cb0 100644
--- a/tests/test_request.py
+++ b/tests/test_request.py
@@ -21,5 +21,5 @@ def test_gets():
assert "get is {}" in res
res = app.get('/?name=george')
- res.mustcontain("get is multidict([('name', 'george')])")
+ res.mustcontain("get is MultiDict([('name', 'george')])")
res.mustcontain("Val is george")