summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2022-07-02 16:05:57 +0200
committerBenoit Pierre <benoit.pierre@gmail.com>2022-07-02 16:09:17 +0200
commit26ff94e90a4da3e4faf085f9e9d02d1409585128 (patch)
tree263e7cc0f44e6cb3da88f315d8c1ede35089e78c
parent2b8a94c0d995583e1bec8a91ff8bb8c9ceec6ef7 (diff)
downloadpython-setuptools-git-26ff94e90a4da3e4faf085f9e9d02d1409585128.tar.gz
setuptools/tests: minor cleanup
-rw-r--r--setuptools/tests/test_easy_install.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index a4e5b2c2..d102e586 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -846,9 +846,11 @@ class TestSetupRequires:
def test_setup_requires_with_transitive_extra_dependency(
self, monkeypatch):
- # Use case: installing a package with a build dependency on
- # an already installed `dep[extra]`, which in turn depends
- # on `extra_dep` (whose is not already installed).
+ '''
+ Use case: installing a package with a build dependency on
+ an already installed `dep[extra]`, which in turn depends
+ on `extra_dep` (whose is not already installed).
+ '''
with contexts.save_pkg_resources_state():
with contexts.tempdir() as temp_dir:
# Create source distribution for `extra_dep`.