Commit 8ce1e392 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed error introduced when testing patch for 013db6ba

Shame on me.
parent 013db6ba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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'])