Commit 8f87b679 authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

[1.7.x] Fixed tuple serialization test.

Thanks to rockallite for the report.

Backport of f01d2a8f from master.
parent 8462883f
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)