Description: Use tuple for choices to un-break Django 1.7c3
 Django 1.7c3 breaks on non-subscriptable objects, therefor changing the choices
 in the tests from list to tuple.
 This patch should be dropped once the #23112 fix is shipped in the Debian
 Django package.
Author: Michael Fladischer <FladischerMichael@fladi.at>
Last-Update: 2014-08-27
Bug: https://code.djangoproject.com/ticket/23112
Forwarded: not-needed

--- a/markupfield/tests/tests.py
+++ b/markupfield/tests/tests.py
@@ -11,11 +11,11 @@
 from markupfield.tests.models import Post, Article, Concrete
 
 from django.forms.models import modelform_factory
-ArticleForm = modelform_factory(Article, fields=['normal_field', 'normal_field_markup_type',
+ArticleForm = modelform_factory(Article, fields=('normal_field', 'normal_field_markup_type',
                                                  'markup_choices_field',
                                                  'markup_choices_field_markup_type',
                                                  'default_field', 'default_field_markup_type',
-                                                 'markdown_field'])
+                                                 'markdown_field'))
 
 
 class MarkupFieldTestCase(TestCase):
