diff --git a/tests/migrations/test_writer.py b/tests/migrations/test_writer.py index 5934f8cf47..14dee65a51 100644 --- a/tests/migrations/test_writer.py +++ b/tests/migrations/test_writer.py @@ -103,7 +103,7 @@ class WriterTests(TestCase): ) ) self.assertSerializedResultEqual( - ((x, x*x) for x in range(3)), + ((x, x * x) for x in range(3)), ( "((0, 0), (1, 1), (2, 4))", set(),