diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-17 22:49:04 +0000 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-18 01:58:05 +0000 |
commit | f6435a9bc3a265d76b8b0c2ff06740dc7377e800 (patch) | |
tree | 5d8d2103e3667c8e69f8c285998d67116947a57d /tests/test_ext_apidoc.py | |
parent | c8f4a03daceef4470ddbc34d5879ffd01588a116 (diff) | |
download | sphinx-git-f6435a9bc3a265d76b8b0c2ff06740dc7377e800.tar.gz |
Prefer ``@pytest.fixture()``
Diffstat (limited to 'tests/test_ext_apidoc.py')
-rw-r--r-- | tests/test_ext_apidoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ext_apidoc.py b/tests/test_ext_apidoc.py index 75208b0d5..4276d5128 100644 --- a/tests/test_ext_apidoc.py +++ b/tests/test_ext_apidoc.py @@ -20,7 +20,7 @@ def apidoc(rootdir, tempdir, apidoc_params): return namedtuple('apidoc', 'coderoot,outdir')(coderoot, outdir) -@pytest.fixture +@pytest.fixture() def apidoc_params(request): pargs = {} kwargs = {} |