diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 13:25:45 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 13:25:45 -0500 |
| commit | 5ce9e5f343ca14f9875106f37f16ad498b294183 (patch) | |
| tree | c7d0ed37234ba1d6d4e253bdbf866c63793edfc0 /setuptools/tests/test_config.py | |
| parent | 313ac58f51c6ef92170647c4cc8626043f68a26b (diff) | |
| download | python-setuptools-git-5ce9e5f343ca14f9875106f37f16ad498b294183.tar.gz | |
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/tests/test_config.py')
| -rw-r--r-- | setuptools/tests/test_config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/tests/test_config.py b/setuptools/tests/test_config.py index 69d8d00d..2fa0b374 100644 --- a/setuptools/tests/test_config.py +++ b/setuptools/tests/test_config.py @@ -695,7 +695,7 @@ class TestOptions: ) with get_dist(tmpdir) as dist: assert set(dist.packages) == set( - ['fake_package', 'fake_package.sub_two']) + ['fake_package', 'fake_package.sub_two']) @py2_only def test_find_namespace_directive_fails_on_py2(self, tmpdir): @@ -748,7 +748,7 @@ class TestOptions: ) with get_dist(tmpdir) as dist: assert set(dist.packages) == { - 'fake_package', 'fake_package.sub_two' + 'fake_package', 'fake_package.sub_two' } def test_extras_require(self, tmpdir): @@ -881,7 +881,7 @@ class TestExternalSetters: return None @patch.object(_Distribution, '__init__', autospec=True) - def test_external_setters(self, mock_parent_init, tmpdir): + def test_external_setters(self, mock_parent_init, tmpdir): mock_parent_init.side_effect = self._fake_distribution_init dist = Distribution(attrs={ |
