From 49874d54a2d73f0117b7bb07eea2cf6096b7dd29 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 1 Jan 2006 18:43:09 +0000 Subject: [PATCH] Fixed httpwrappers unit tests to reflect MultiValueDict repr() change git-svn-id: http://code.djangoproject.com/svn/django/trunk@1812 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/othertests/httpwrappers.py | 6 +++--- 1 file 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 " >>> 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 " >>> 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 " >>> q['something'] = 'bar' Traceback (most recent call last):