make flake8 happy

This commit is contained in:
Ilan Schnell 2020-04-22 18:23:24 -05:00
parent 1d1b7a674e
commit 8780a80c4d
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ def generate_yaml_tests(directory):
skip = case.pop("skip", False)
assert skip in [False, True, 'old', 'new']
if skip == True or skip == resolver:
if skip is True or skip == resolver:
case = pytest.param(case, marks=pytest.mark.xfail)
yield case