Skip to content

Commit

Permalink
Ignore != operator in doc coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 15, 2015
1 parent e94b215 commit 2f72b3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsdoccoverage.py
Expand Up @@ -27,7 +27,7 @@
# DON'T RAISE THIS THRESHOLD!!!
# (changes which lower this threshold are welcomed though!)

ACCEPTABLE_MISSING_DOCS = 3853
ACCEPTABLE_MISSING_DOCS = 3842


class TestQgsDocCoverage(TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/utilities.py
Expand Up @@ -632,7 +632,7 @@ def elemIsDocumentableMember(self, elem):

# ignore certain obvious operators
try:
if name.text in ('operator=', 'operator=='):
if name.text in ('operator=', 'operator==', 'operator!='):
return False
except:
pass
Expand Down

0 comments on commit 2f72b3b

Please sign in to comment.