From 05b962c742fb5ab9f51a11106872fcc03f412e3a Mon Sep 17 00:00:00 2001 From: Lioman Date: Mon, 30 Oct 2023 14:24:27 +0100 Subject: [PATCH] Fixing docstrings --- pelican/tests/build_test/test_build_files.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pelican/tests/build_test/test_build_files.py b/pelican/tests/build_test/test_build_files.py index 972cc787..2b51d362 100644 --- a/pelican/tests/build_test/test_build_files.py +++ b/pelican/tests/build_test/test_build_files.py @@ -12,7 +12,7 @@ import pytest ) def test_wheel_contents(pytestconfig): """ - This test, should test the contents of the wheel to make sure, + This test should test the contents of the wheel to make sure that everything that is needed is included in the final build """ dist_folder = pytestconfig.getoption("--check-build") @@ -48,8 +48,8 @@ def test_wheel_contents(pytestconfig): ) def test_sdist_contents(pytestconfig, expected_file): """ - This test, should test the contents of the wheel to make sure, - that everything that is needed is included in the final build + This test should test the contents of the source distribution to make sure + that everything that is needed is included in the final build. """ dist_folder = pytestconfig.getoption("--check-build") sdist_files = Path(dist_folder).rglob("*.tar.gz")