summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-01-21 22:42:47 +0100
committerClaude Paroz <claude@2xlibre.net>2013-01-21 22:42:47 +0100
commit8ce1e392fa785895be561b3164df53dc11091054 (patch)
tree45fc24283e5d82e9ef6db4a36d047322712d370f
parent013db6ba85fb880bd1f9a5ad2e91dc5c1efe197c (diff)
Fixed error introduced when testing patch for 013db6ba85
Shame on me.
-rw-r--r--tests/regressiontests/admin_util/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_util/tests.py b/tests/regressiontests/admin_util/tests.py
index 274103cf87..7898f200b5 100644
--- a/tests/regressiontests/admin_util/tests.py
+++ b/tests/regressiontests/admin_util/tests.py
@@ -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'])