diff options
author | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-06-17 17:05:11 +0200 |
---|---|---|
committer | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-10-08 20:55:36 +0200 |
commit | 5469415be4c237d7ea0125d214b7e73c441954f2 (patch) | |
tree | 71073e0c4bc06da7efbadab7cc6f2f38c39b8107 /tests/scanner/annotationparser | |
parent | a42b38d54ff3539fd8e1f312c815744856a5c0b5 (diff) | |
download | gobject-introspection-5469415be4c237d7ea0125d214b7e73c441954f2.tar.gz |
giscanner: remove unused GtkDocCommentBlock.value
Diffstat (limited to 'tests/scanner/annotationparser')
-rw-r--r-- | tests/scanner/annotationparser/test_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scanner/annotationparser/test_parser.py b/tests/scanner/annotationparser/test_parser.py index 7141c7a3..c88cc266 100644 --- a/tests/scanner/annotationparser/test_parser.py +++ b/tests/scanner/annotationparser/test_parser.py @@ -177,8 +177,8 @@ class TestCommentBlock(unittest.TestCase): parsed += ' </parameter>\n' parsed += ' </parameters>\n' - if docblock.description or docblock.value: - parsed += ' <description>%s</description>\n' % (docblock.description or docblock.value, ) + if docblock.description: + parsed += ' <description>%s</description>\n' % (docblock.description, ) if docblock.tags: parsed += ' <tags>\n' |