Skip to content

Commit

Permalink
Fixed #15703 -- Corrected problem in test suite introduced by Python …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
freakboy3742 committed Mar 28, 2011
1 parent e54c0a0 commit 3bad2ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/regressiontests/utils/datastructures.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def test_multivaluedict(self):
['Developer', 'Simon', 'Willison']) ['Developer', 'Simon', 'Willison'])


def test_copy(self): 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({ d1 = MultiValueDict({
"developers": ["Carl", "Fred"] "developers": ["Carl", "Fred"]
}) })
Expand Down

0 comments on commit 3bad2ca

Please sign in to comment.