summaryrefslogtreecommitdiff
path: root/tests/regressiontests/httpwrappers/tests.py
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2007-09-20 15:51:19 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2007-09-20 15:51:19 +0000
commit484189ff9ca4b682a113a6d8bfd76848a52b71f6 (patch)
treea24005ce8259e8118e4ceaff1dbdfec4e21c2b7f /tests/regressiontests/httpwrappers/tests.py
parent2fea878213ede5bd4603f7cd18afa5f81516e82c (diff)
Fixed httpwrappers tests broken by [6385].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6396 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/httpwrappers/tests.py')
-rw-r--r--tests/regressiontests/httpwrappers/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index 9d5ca2006a..5cfae029bb 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -8,7 +8,7 @@
>>> q['foo']
Traceback (most recent call last):
...
-MultiValueDictKeyError: "Key 'foo' not found in <MultiValueDict: {}>"
+MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>"
>>> q['something'] = 'bar'
Traceback (most recent call last):
@@ -89,7 +89,7 @@ AttributeError: This QueryDict instance is immutable
>>> q['foo']
Traceback (most recent call last):
...
-MultiValueDictKeyError: "Key 'foo' not found in <MultiValueDict: {}>"
+MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>"
>>> q['name'] = 'john'
@@ -201,7 +201,7 @@ u'bar'
>>> q['bar']
Traceback (most recent call last):
...
-MultiValueDictKeyError: "Key 'bar' not found in <MultiValueDict: {u'foo': [u'bar']}>"
+MultiValueDictKeyError: "Key 'bar' not found in <QueryDict: {u'foo': [u'bar']}>"
>>> q['something'] = 'bar'
Traceback (most recent call last):