Kaydet (Commit) 3bad2ca4 authored tarafından Russell Keith-Magee's avatar Russell Keith-Magee

Fixed #15703 -- Corrected problem in test suite introduced by Python 2.4 changes…

Fixed #15703 -- Corrected problem in test suite introduced by Python 2.4 changes from r15927. Thanks to mk for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst e54c0a0c
......@@ -214,7 +214,7 @@ class MultiValueDictTests(DatastructuresTestCase):
['Developer', 'Simon', 'Willison'])
def test_copy(self):
for copy_func in [copy, lambda d: d.copy()]:
for copy_func in [copy.copy, lambda d: d.copy()]:
d1 = MultiValueDict({
"developers": ["Carl", "Fred"]
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment