From f01d2a8f9be8bc2005b7f1620a2ca40530fb5065 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Fri, 23 May 2014 14:50:10 +0200 Subject: [PATCH] Fixed tuple serialization test. Thanks to rockallite for the report. --- tests/migrations/test_writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)