test_coroutines: remove whitespace

This commit is contained in:
Yury Selivanov 2015-06-30 12:51:12 -04:00
parent 9dec03571f
commit 86cd7d6b75
1 changed files with 1 additions and 1 deletions

View 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)