Commit f01d2a8f authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Fixed tuple serialization test.

Thanks to rockallite for the report.
parent f851a954
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)