From ad9ff303f148d807304dcaedbf39261654166f1f Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Fri, 8 Sep 2023 22:53:58 -0400 Subject: [PATCH] Update fixture docstring --- tests/test_snapshots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_snapshots.py b/tests/test_snapshots.py index d49936c..c4a45f1 100644 --- a/tests/test_snapshots.py +++ b/tests/test_snapshots.py @@ -28,7 +28,7 @@ Input.cursor_blink = False # type: ignore {"theme": "dark", "ascii_only": True}, ], ids=lambda param: f"{param['theme']}_{'ascii' if param['ascii_only'] else 'unicode'}") def each_theme(request): - """Fixture to set the PYTEST_TEXTUAL_PAINT_ARGS environment variable.""" + """Fixture to test each combination of UI styles.""" theme = request.param.get("theme") ascii_only = request.param.get("ascii_only") # os.environ["PYTEST_TEXTUAL_PAINT_ARGS"] = f"--theme {theme}" + (" --ascii-only" if ascii_only else "")