fix quotes in scope order test

This commit is contained in:
Ronny Pfannschmidt 2018-06-29 07:13:18 +02:00
parent 5582ad0445
commit 4ae7e9788c
1 changed files with 1 additions and 1 deletions

View File

@ -3805,7 +3805,7 @@ class TestScopeOrdering(object):
VARIANT = os.environ.get(VAR)
if VARIANT is None or VARIANT not in VALID_VARS:
warnings.warn(\"{!r}\" is not in {}, assuming autouse".format(VARIANT, VALID_VARS) )
warnings.warn("{!r} is not in {}, assuming autouse".format(VARIANT, VALID_VARS) )
variant = 'mark'
@pytest.fixture(scope='module', autouse=VARIANT == 'autouse')