]> granicus.if.org Git - python/commitdiff
test_coroutines: remove whitespace
authorYury Selivanov <yselivanov@sprymix.com>
Tue, 30 Jun 2015 16:51:12 +0000 (12:51 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Tue, 30 Jun 2015 16:51:12 +0000 (12:51 -0400)
Lib/test/test_coroutines.py

index e869fd216a1403ccddf76d39fd08e5df15eb6556..a84e27a0d5036f2af71d8f50c1d3e8f6e945a263 100644 (file)
@@ -113,7 +113,7 @@ class AsyncBadSyntaxTest(unittest.TestCase):
                      '{await a for a in b}',
                      '{await a: c for a in b}'}:
 
-            with self.assertRaisesRegex( SyntaxError, 'await.*in comprehen'):
+            with self.assertRaisesRegex(SyntaxError, 'await.*in comprehen'):
                 exec('async def f():\n\t{}'.format(comp), ns, ns)