summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser/test_patterns.py
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2012-07-04 07:50:14 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2012-11-28 21:31:23 +0100
commit2d9245c4ed1367dd243d0bdcda5509c74803a834 (patch)
tree36f48893a3e76141b59430e9cdb21f30ec228fef /tests/scanner/annotationparser/test_patterns.py
parent1de10b1b740ae84a51c6f4e52374afdbbc10d74c (diff)
downloadgobject-introspection-2d9245c4ed1367dd243d0bdcda5509c74803a834.tar.gz
giscanner: construct list of possible tag names for TAG_RE from _ALL_TAGS...
... instead of having a secondary hard-coded list. This results in the removal of giscanner/annotationpatterns.py to prevent a circular import. https://bugzilla.gnome.org/show_bug.cgi?id=688897
Diffstat (limited to 'tests/scanner/annotationparser/test_patterns.py')
-rw-r--r--tests/scanner/annotationparser/test_patterns.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scanner/annotationparser/test_patterns.py b/tests/scanner/annotationparser/test_patterns.py
index 0b5592a4..2755cc9a 100644
--- a/tests/scanner/annotationparser/test_patterns.py
+++ b/tests/scanner/annotationparser/test_patterns.py
@@ -31,8 +31,8 @@ against the expected output.
'''
-from giscanner.annotationpatterns import (SECTION_RE, SYMBOL_RE, PROPERTY_RE,
- SIGNAL_RE, PARAMETER_RE, TAG_RE)
+from giscanner.annotationparser import (SECTION_RE, SYMBOL_RE, PROPERTY_RE,
+ SIGNAL_RE, PARAMETER_RE, TAG_RE)
from unittest import (TestCase, main)