From 8a56ef0d999706734364814f09631f50f3a7d676 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Fri, 20 Sep 2024 18:22:26 +0000 Subject: [PATCH] fix(plugins): nit --- src/pytest_plugins/concurrency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pytest_plugins/concurrency.py b/src/pytest_plugins/concurrency.py index 744da8e10f..c314eb03fc 100644 --- a/src/pytest_plugins/concurrency.py +++ b/src/pytest_plugins/concurrency.py @@ -20,7 +20,7 @@ def session_temp_folder_name(testrun_uid: str) -> str: # noqa: SC200 xdist workers to coordinate the tests. "testrun_uid" is a fixture provided by the xdist plugin, and is unique for each test run, - so it is used to create the unique folder name for each test run. + so it is used to create the unique folder name. """ return f"pytest-{testrun_uid}" # noqa: SC200