From 4ae7e9788c67cb723ccfa7f1a5987d6db451b27b Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Fri, 29 Jun 2018 07:13:18 +0200 Subject: [PATCH] fix quotes in scope order test --- testing/python/fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/python/fixture.py b/testing/python/fixture.py index 42f637776..4834bc3df 100644 --- a/testing/python/fixture.py +++ b/testing/python/fixture.py @@ -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')