summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAdrian Heine <mail@adrianheine.de>2017-12-28 23:04:35 +0100
committerRick Waldron <waldron.rick@gmail.com>2018-01-05 12:10:01 -0500
commit8e7213db383b38ef2d009e471b0da88b82272f47 (patch)
treede25c9d705525485b40c1933354b0db9377ddd4b /tools
parente10344acf28fa9c5710ef4ed1e6add3da55c231f (diff)
downloadqtdeclarative-testsuites-8e7213db383b38ef2d009e471b0da88b82272f47.tar.gz
Remove unused constants in checks/features.py
Diffstat (limited to 'tools')
-rw-r--r--tools/lint/lib/checks/features.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/lint/lib/checks/features.py b/tools/lint/lib/checks/features.py
index f7cae4894..fdfa57aec 100644
--- a/tools/lint/lib/checks/features.py
+++ b/tools/lint/lib/checks/features.py
@@ -1,12 +1,5 @@
from ..check import Check
-_REQUIRED_FIELDS = set(['description'])
-_OPTIONAL_FIELDS = set([
- 'author', 'es5id', 'es6id', 'esid', 'features', 'flags', 'includes',
- 'info', 'negative', 'timeout'
-])
-_VALID_FIELDS = _REQUIRED_FIELDS | _OPTIONAL_FIELDS
-
class CheckFeatures(Check):
'''Ensure tests specify only `features` from a list of valid values.'''
ID = 'FEATURES'