summaryrefslogtreecommitdiff
path: root/sphinx/testing/fixtures.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 11:15:54 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 19:36:41 +0900
commit28e5e66f78f46e5e44b053297a0c90a718effcf7 (patch)
tree5290cb6113599dadf6a47f247683dfa06183151f /sphinx/testing/fixtures.py
parent1fb79cff452144761a09fdd0feee28724f1b904b (diff)
downloadsphinx-git-28e5e66f78f46e5e44b053297a0c90a718effcf7.tar.gz
Use typing.NamedTuple instead of collections.namedtuple as possible
Diffstat (limited to 'sphinx/testing/fixtures.py')
-rw-r--r--sphinx/testing/fixtures.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/sphinx/testing/fixtures.py b/sphinx/testing/fixtures.py
index eec3b4208..a864e19d1 100644
--- a/sphinx/testing/fixtures.py
+++ b/sphinx/testing/fixtures.py
@@ -76,7 +76,6 @@ def app_params(request: Any, test_params: Dict, shared_result: SharedResult,
args = [pargs[i] for i in sorted(pargs.keys())]
# ##### process pytest.mark.test_params
-
if test_params['shared_result']:
if 'srcdir' in kwargs:
raise pytest.Exception('You can not spcify shared_result and '