mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
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
This commit is contained in:
parent
e54c0a0c94
commit
3bad2ca473
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue