diff options
| author | Baptiste Mispelon <bmispelon@gmail.com> | 2014-05-23 14:50:10 +0200 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2014-05-23 14:51:22 +0200 |
| commit | 8f87b679ed9879bd5ef9dbc1566f87ed8442fd3b (patch) | |
| tree | f25ede49f4cf1557323a926db7d2a4dced1f8651 | |
| parent | 8462883f9b16810fbc6175d78d7bb13a297debe9 (diff) | |
[1.7.x] Fixed tuple serialization test.
Thanks to rockallite for the report.
Backport of f01d2a8f9be8bc2005b7f1620a2ca40530fb5065 from master.
| -rw-r--r-- | tests/migrations/test_writer.py | 2 |
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) |
