From d62cfce213e9393407846477a1a599f847be8603 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 25 Aug 2008 03:59:28 +0000 Subject: [PATCH] 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 --- tests/regressiontests/httpwrappers/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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