summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-05-29 18:51:02 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-10-08 20:55:15 +0200
commit873c828b21ab837bea751be823b04c10e68dd9ed (patch)
tree56d9b4ac501ae32bda4a9aa344f7d48923b22baa /tests/scanner/annotationparser
parentbcc9f905cc723dd4c2cc4894622ebe14fffa55a8 (diff)
downloadgobject-introspection-873c828b21ab837bea751be823b04c10e68dd9ed.tar.gz
giscanner: rename DocBlock to GtkDocCommentBlock
and move it downwards after DocTag, DocOptions etc for easier reading
Diffstat (limited to 'tests/scanner/annotationparser')
-rw-r--r--tests/scanner/annotationparser/test_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scanner/annotationparser/test_parser.py b/tests/scanner/annotationparser/test_parser.py
index 1b82625b..7141c7a3 100644
--- a/tests/scanner/annotationparser/test_parser.py
+++ b/tests/scanner/annotationparser/test_parser.py
@@ -96,11 +96,11 @@ class TestCommentBlock(unittest.TestCase):
expected_messages.append(w.text.strip())
# Compare parsed with expected GtkDocCommentBlock
- msg = 'Parsed DocBlock object tree does not match expected output:\n\n'
+ msg = 'Parsed GtkDocCommentBlock object tree does not match expected output:\n\n'
msg += '%s\n\n' % (commentblock, )
diff = difflib.unified_diff(expected_tree, parsed_tree,
- 'Expected DocBlock', 'Parsed DocBlock',
+ 'Expected GtkDocCommentBlock', 'Parsed GtkDocCommentBlock',
n=max(len(expected_tree), len(parsed_tree)),
lineterm='')
for line in diff: