Commit d9998e62 authored by mattip's avatar mattip Committed by Jason R. Coombs

fix test for deprecation warning

parent 7a8c226c
...@@ -42,7 +42,7 @@ class TestBuildExt: ...@@ -42,7 +42,7 @@ class TestBuildExt:
res = cmd.get_ext_filename('spam.eggs') res = cmd.get_ext_filename('spam.eggs')
if six.PY2 or not get_abi3_suffix(): 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': elif sys.platform == 'win32':
assert res.endswith('eggs.pyd') assert res.endswith('eggs.pyd')
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment