summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-03-06 21:47:15 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-03-06 21:56:12 -0500
commit0bffc7c1c673f9735bdac71a2949fae809ec07a3 (patch)
treeb22396c1d582776da7cdc5696566e1bd69449eb7 /setuptools/tests
parent28c7abc9516821cb701be5576ccd274a3b0c0389 (diff)
downloadpython-setuptools-git-0bffc7c1c673f9735bdac71a2949fae809ec07a3.tar.gz
Apply suggestions in code review.
Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_config.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/tests/test_config.py b/setuptools/tests/test_config.py
index 454ffb24..1ff5ee41 100644
--- a/setuptools/tests/test_config.py
+++ b/setuptools/tests/test_config.py
@@ -541,8 +541,9 @@ class TestMetadata:
with pytest.warns(UserWarning, match=msg):
with get_dist(tmpdir) as dist:
metadata = dist.metadata
- assert metadata.name == 'foo'
- assert metadata.description == 'Some description'
+
+ assert metadata.name == 'foo'
+ assert metadata.description == 'Some description'
class TestOptions: