diff options
Diffstat (limited to 'tests/test_domain_cpp.py')
-rw-r--r-- | tests/test_domain_cpp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 195b57cf8..584e825ce 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -31,7 +31,7 @@ def parse(name, string): if not parser.eof: print("Parsing stopped at", parser.pos) print(string) - print('-'*parser.pos + '^') + print('-' * parser.pos + '^') raise DefinitionError("") # The scopedness would usually have been set by CPPEnumObject if name == "enum": @@ -495,7 +495,6 @@ def test_attributes(): output='__attribute__(()) static inline void f()') - # def test_print(): # # used for getting all the ids out for checking # for a in ids: |