diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-03-08 14:41:13 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-03-08 14:41:13 +0000 |
| commit | 4487be66efbd9e78804f59e4b6f0cf5d977c7d6b (patch) | |
| tree | bc21557b7bfa3634e193f6f7a8932c7748f95ac1 | |
| parent | dcdd9b3c637968ee377a852178e23706b301b0f1 (diff) | |
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
| -rw-r--r-- | tests/regressiontests/requests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/requests/tests.py b/tests/regressiontests/requests/tests.py index 890dc33c59..f32ef14ae9 100644 --- a/tests/regressiontests/requests/tests.py +++ b/tests/regressiontests/requests/tests.py @@ -13,7 +13,7 @@ META:{}> GET:<QueryDict: {}>, POST:<QueryDict: {}>, COOKIES:{}, -META:{'REQUEST_METHOD': 'bogus', 'PATH_INFO': 'bogus'}> +META:{...}> >>> from django.core.handlers.modpython import ModPythonRequest >>> class FakeModPythonRequest(ModPythonRequest): |
