summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/othertests/httpwrappers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/othertests/httpwrappers.py b/tests/othertests/httpwrappers.py
index 0564ee04f0..da11779027 100644
--- a/tests/othertests/httpwrappers.py
+++ b/tests/othertests/httpwrappers.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 MultiValueDict <MultiValueDict: {}>"
>>> q['something'] = 'bar'
Traceback (most recent call last):
@@ -86,7 +86,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 MultiValueDict <MultiValueDict: {}>"
>>> q['name'] = 'john'
@@ -186,7 +186,7 @@ True
>>> q['bar']
Traceback (most recent call last):
...
-MultiValueDictKeyError: "Key 'bar' not found in MultiValueDict {'foo': ['bar']}"
+MultiValueDictKeyError: "Key 'bar' not found in MultiValueDict <MultiValueDict: {'foo': ['bar']}>"
>>> q['something'] = 'bar'
Traceback (most recent call last):