0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

Fixed error introduced when testing patch for 013db6ba85

Shame on me.
This commit is contained in:
Claude Paroz 2013-01-21 22:42:47 +01:00
parent 013db6ba85
commit 8ce1e392fa

View File

@ -314,7 +314,7 @@ class UtilTests(unittest.TestCase):
fieldsets = (
(None, {
'fields': ['url', 'title', ['content', 'sites'])
'fields': ('url', 'title', ['content', 'sites'])
}),
)
self.assertEqual(flatten_fieldsets(fieldsets), ['url', 'title', 'content', 'sites'])