summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2014-05-23 14:50:10 +0200
committerBaptiste Mispelon <bmispelon@gmail.com>2014-05-23 14:50:10 +0200
commitf01d2a8f9be8bc2005b7f1620a2ca40530fb5065 (patch)
tree9477a361a5e06735496332dd8ae720c93c11fca8
parentf851a954ac605c4a525761a18d2dcbfb6f8deeca (diff)
Fixed tuple serialization test.
Thanks to rockallite for the report.
-rw-r--r--tests/migrations/test_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_writer.py b/tests/migrations/test_writer.py
index f73f08fb9c..2628388656 100644
--- a/tests/migrations/test_writer.py
+++ b/tests/migrations/test_writer.py
@@ -131,7 +131,7 @@ class WriterTests(TestCase):
tuple) default_permissions = ()
"""
empty_tuple = ()
- one_item_tuple = ('a')
+ one_item_tuple = ('a',)
many_items_tuple = ('a', 'b', 'c')
self.assertSerializedEqual(empty_tuple)
self.assertSerializedEqual(one_item_tuple)