From 2ba09c000d643eaba39a0e80b0329d55b0ae2d2c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 22 Jan 2014 09:21:05 -0600 Subject: [PATCH] Added some missing whitespace around arithmetic operators --- tests/migrations/test_writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(),