Remove unused constants in checks/features.py

This commit is contained in:
Adrian Heine 2017-12-28 23:04:35 +01:00 committed by Rick Waldron
parent e10344acf2
commit 8e7213db38
1 changed files with 0 additions and 7 deletions

View File

@ -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'