Fixed tuple serialization test.

Thanks to rockallite for the report.
This commit is contained in:
Baptiste Mispelon 2014-05-23 14:50:10 +02:00
parent f851a954ac
commit f01d2a8f9b
1 changed files with 1 additions and 1 deletions

View File

@ -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)