summaryrefslogtreecommitdiff
path: root/tests/regressiontests/httpwrappers
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-08-25 03:59:28 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-08-25 03:59:28 +0000
commitd62cfce213e9393407846477a1a599f847be8603 (patch)
tree5a213c0783a0febb9b0a40b8e65f824548537c5d /tests/regressiontests/httpwrappers
parentde977c851429974f90ba907332c1d8699b88b4da (diff)
Improved the regression test in [8460] a bit, based on some information from
John Huddleston in #7496. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8530 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/httpwrappers')
-rw-r--r--tests/regressiontests/httpwrappers/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index 5e42ff3b63..b10c24e7bf 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -397,7 +397,7 @@ u'\ufffd'
########################
>>> import pickle
>>> q = QueryDict('a=b&c=d')
->>> q1 = pickle.loads(pickle.dumps(q))
+>>> q1 = pickle.loads(pickle.dumps(q, 2))
>>> q == q1
True