diff options
author | J. Goutin <JGoutin@users.noreply.github.com> | 2016-07-23 13:01:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-23 13:01:13 +0200 |
commit | 1a0644e065bfe2f05a64d92b4abd31392d471751 (patch) | |
tree | 2a44b11c904e561b0ca09c9ea6d625256ae18de9 /setuptools/tests/test_msvc.py | |
parent | 2b8cf28f3be32903b79e5b5b579fab38105791dd (diff) | |
download | external_python_setuptools-1a0644e065bfe2f05a64d92b4abd31392d471751.tar.gz external_python_setuptools-1a0644e065bfe2f05a64d92b4abd31392d471751.tar.bz2 external_python_setuptools-1a0644e065bfe2f05a64d92b4abd31392d471751.zip |
Update test_msvc.py
Diffstat (limited to 'setuptools/tests/test_msvc.py')
-rw-r--r-- | setuptools/tests/test_msvc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_msvc.py b/setuptools/tests/test_msvc.py index ad96752d..a0c76ea0 100644 --- a/setuptools/tests/test_msvc.py +++ b/setuptools/tests/test_msvc.py @@ -87,7 +87,7 @@ class TestModulePatch: query_vcvarsall(9.0) except Exception as exc: expected = distutils.errors.DistutilsPlatformError - assert isinstance(expected, exc) + assert isinstance(exc, expected) assert 'aka.ms/vcpython27' in str(exc) @pytest.yield_fixture |