Added some missing whitespace around arithmetic operators

This commit is contained in:
Alex Gaynor 2014-01-22 09:21:05 -06:00
parent 6f06c749b7
commit 2ba09c000d
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class WriterTests(TestCase):
) )
) )
self.assertSerializedResultEqual( self.assertSerializedResultEqual(
((x, x*x) for x in range(3)), ((x, x * x) for x in range(3)),
( (
"((0, 0), (1, 1), (2, 4))", "((0, 0), (1, 1), (2, 4))",
set(), set(),