From 451b38ae9c3313d7f6a5107be5c2a0a24241451e Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Tue, 26 Sep 2023 16:34:42 +0100 Subject: [PATCH] test; fix further typo --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index cb87402d..26f8da8c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -12,7 +12,7 @@ def test_quickstart(tmp_path: Path, sphinx_run, make_app): """Test the quickstart CLI builds a valid sphinx project.""" project_path = tmp_path / "project" quickstart([str(project_path)]) - assert {p.name for p in path.iterdir()} == { + assert {p.name for p in project_path.iterdir()} == { ".gitignore", "conf.py", "index.md",