summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-05-15 22:48:42 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-10-08 20:54:43 +0200
commit8d9396f9b3253bff876456ec695bcea7cbbf7a69 (patch)
tree7256bd0097818045e2fba5228dffebc5e6058ca8 /tests/scanner/annotationparser
parente88a99496cf4091ec16670a2fe656878fc055692 (diff)
downloadgobject-introspection-8d9396f9b3253bff876456ec695bcea7cbbf7a69.tar.gz
giscanner: expand parse_comment_block() parameters
Makes it consistent with the parse_comment_blocks() and _parse_comment_block() methods.
Diffstat (limited to 'tests/scanner/annotationparser')
-rw-r--r--tests/scanner/annotationparser/test_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scanner/annotationparser/test_parser.py b/tests/scanner/annotationparser/test_parser.py
index 2c8cd6ed..adf4f657 100644
--- a/tests/scanner/annotationparser/test_parser.py
+++ b/tests/scanner/annotationparser/test_parser.py
@@ -83,7 +83,7 @@ class TestCommentBlock(unittest.TestCase):
# Parse GTK-Doc comment block
commentblock = testcase.find(ns('{}input')).text
- parsed_docblock = GtkDocCommentBlockParser().parse_comment_block((commentblock, 'test.c', 1))
+ parsed_docblock = GtkDocCommentBlockParser().parse_comment_block(commentblock, 'test.c', 1)
parsed_tree = self.parsed2tree(parsed_docblock).split('\n')
emitted_messages = [w[w.find(':') + 1:].strip() for w in output.getvalue()]