summaryrefslogtreecommitdiff
path: root/tests/test_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r--tests/test_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 838d7814..0053e932 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -193,7 +193,7 @@ class ParserMissingArcDescriptionTest(CoverageTest):
def parse_text(self, source):
"""Parse Python source, and return the parser object."""
- parser = PythonParser(textwrap.dedent(source))
+ parser = PythonParser(text=textwrap.dedent(source))
parser.parse_source()
return parser