diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-03 03:01:02 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-03 03:01:02 -0500 |
commit | f74153cd1cfee6bef9a8628937fa2eee7d2da4c5 (patch) | |
tree | a4a65b122adb51acd2dcbf6867a3c0a28ca9ed59 /setuptools/tests | |
parent | 4af0a332c3d292932998f2ae550abc7af95f1ede (diff) | |
download | external_python_setuptools-f74153cd1cfee6bef9a8628937fa2eee7d2da4c5.tar.gz external_python_setuptools-f74153cd1cfee6bef9a8628937fa2eee7d2da4c5.tar.bz2 external_python_setuptools-f74153cd1cfee6bef9a8628937fa2eee7d2da4c5.zip |
Test is passing when LC_CTYPE isn't present. According to the original ticket, Distribute 103, this test was only failing for "C" and "POSIX", so only expect the failure there.
Diffstat (limited to 'setuptools/tests')
-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): |