Commit da545288 authored by Dylan Trotter's avatar Dylan Trotter

Fix lint error.

parent 4d1412b8
...@@ -336,7 +336,8 @@ class StatementVisitorTest(unittest.TestCase): ...@@ -336,7 +336,8 @@ class StatementVisitorTest(unittest.TestCase):
regexp = r'wildcard member import is not implemented: from foo import *' regexp = r'wildcard member import is not implemented: from foo import *'
self.assertRaisesRegexp(util.ParseError, regexp, _ParseAndVisit, self.assertRaisesRegexp(util.ParseError, regexp, _ParseAndVisit,
'from foo import *') 'from foo import *')
regexp = r'wildcard member import is not implemented: from __go__.foo import *' regexp = (r'wildcard member import is not '
r'implemented: from __go__.foo import *')
self.assertRaisesRegexp(util.ParseError, regexp, _ParseAndVisit, self.assertRaisesRegexp(util.ParseError, regexp, _ParseAndVisit,
'from __go__.foo import *') 'from __go__.foo import *')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment