diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-16 19:54:13 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-16 19:54:13 -0400 |
commit | e1824c093bf89e8875ddd329f316b9ed3e7dd533 (patch) | |
tree | 18f7af4964ef5bce2e967f1524519135812bec0b /setuptools/tests | |
parent | d6bcf5e89ef6a523c2476b249aba810af9808d8b (diff) | |
download | external_python_setuptools-e1824c093bf89e8875ddd329f316b9ed3e7dd533.tar.gz external_python_setuptools-e1824c093bf89e8875ddd329f316b9ed3e7dd533.tar.bz2 external_python_setuptools-e1824c093bf89e8875ddd329f316b9ed3e7dd533.zip |
Extract StaticModule and patch_path helpers.
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_config.py b/setuptools/tests/test_config.py index d8347c78..961f8d42 100644 --- a/setuptools/tests/test_config.py +++ b/setuptools/tests/test_config.py @@ -103,7 +103,7 @@ class TestConfigurationReader: 'version = attr: none.VERSION\n' 'keywords = one, two\n' ) - with pytest.raises(DistutilsOptionError): + with pytest.raises(ImportError): read_configuration('%s' % config) config_dict = read_configuration( |