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:50:10 +0200 |
| commit | f01d2a8f9be8bc2005b7f1620a2ca40530fb5065 (patch) | |
| tree | 9477a361a5e06735496332dd8ae720c93c11fca8 /tests | |
| parent | f851a954ac605c4a525761a18d2dcbfb6f8deeca (diff) | |
Fixed tuple serialization test.
Thanks to rockallite for the report.
Diffstat (limited to 'tests')
| -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) |
