summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser/test_patterns.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scanner/annotationparser/test_patterns.py')
-rw-r--r--tests/scanner/annotationparser/test_patterns.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/scanner/annotationparser/test_patterns.py b/tests/scanner/annotationparser/test_patterns.py
index 3362458b..ed687a43 100644
--- a/tests/scanner/annotationparser/test_patterns.py
+++ b/tests/scanner/annotationparser/test_patterns.py
@@ -160,19 +160,19 @@ comment_end_tests = [
comment_asterisk_tests = [
(COMMENT_ASTERISK_RE, '*',
- {}),
+ {'comment': ''}),
(COMMENT_ASTERISK_RE, '* ',
- {}),
+ {'comment': ''}),
(COMMENT_ASTERISK_RE, ' *',
- {}),
+ {'comment': ''}),
(COMMENT_ASTERISK_RE, ' * ',
- {}),
+ {'comment': ''}),
(COMMENT_ASTERISK_RE, ' * ',
- {}),
+ {'comment': ''}),
(COMMENT_ASTERISK_RE, ' * test',
- {}),
+ {'comment': ''}),
(COMMENT_ASTERISK_RE, 'test * ',
- None)]
+ {'comment': 'test'})]
indentaton_tests = [