From 4487be66efbd9e78804f59e4b6f0cf5d977c7d6b Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sat, 8 Mar 2008 14:41:13 +0000 Subject: [PATCH] Fixed tests added in [7200] to not depend on unpredictable key order of dict, which was sometimes causing a test error. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7207 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/requests/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/requests/tests.py b/tests/regressiontests/requests/tests.py index 890dc33c596..f32ef14ae93 100644 --- a/tests/regressiontests/requests/tests.py +++ b/tests/regressiontests/requests/tests.py @@ -13,7 +13,7 @@ META:{}> GET:, POST:, COOKIES:{}, -META:{'REQUEST_METHOD': 'bogus', 'PATH_INFO': 'bogus'}> +META:{...}> >>> from django.core.handlers.modpython import ModPythonRequest >>> class FakeModPythonRequest(ModPythonRequest):