aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2020-06-29 20:00:24 +0300
committerJason R. Coombs <jaraco@jaraco.com>2020-07-02 18:02:34 -0400
commitd9998e6281cbf4bb90cfd8c90e7f34b4ea3a350d (patch)
tree8d0342116c1351ceb1ea359793cb30a69277053d /setuptools/tests
parent7a8c226c9a27f1d5efb7e66b8aee779020a0c6a1 (diff)
downloadexternal_python_setuptools-d9998e6281cbf4bb90cfd8c90e7f34b4ea3a350d.tar.gz
external_python_setuptools-d9998e6281cbf4bb90cfd8c90e7f34b4ea3a350d.tar.bz2
external_python_setuptools-d9998e6281cbf4bb90cfd8c90e7f34b4ea3a350d.zip
fix test for deprecation warning
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_build_ext.py b/setuptools/tests/test_build_ext.py
index 3dc87ca3..2ef8521d 100644
--- a/setuptools/tests/test_build_ext.py
+++ b/setuptools/tests/test_build_ext.py
@@ -42,7 +42,7 @@ class TestBuildExt:
res = cmd.get_ext_filename('spam.eggs')
if six.PY2 or not get_abi3_suffix():
- assert res.endswith(get_config_var('SO'))
+ assert res.endswith(get_config_var('EXT_SUFFIX'))
elif sys.platform == 'win32':
assert res.endswith('eggs.pyd')
else: