diff options
-rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index b364eca2..834b83e4 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -444,7 +444,7 @@ class TestScriptHeader: assert candidate == '#!"%s"\n' % self.exe_with_spaces @pytest.mark.xfail( - compat.PY3 and os.environ.get("LC_CTYPE") in (None, "C", "POSIX"), + compat.PY3 and os.environ.get("LC_CTYPE") in ("C", "POSIX"), reason="Test fails in this locale on Python 3" ) def test_get_script_header_jython_workaround(self): |