diff options
Diffstat (limited to 'tests/test_coverage.py')
| -rw-r--r-- | tests/test_coverage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_coverage.py b/tests/test_coverage.py index e6747b0c..bfa76a98 100644 --- a/tests/test_coverage.py +++ b/tests/test_coverage.py @@ -38,7 +38,7 @@ def test_build(app): undoc_py, undoc_c = pickle.loads((app.outdir / 'undoc.pickle').bytes()) assert len(undoc_c) == 1 # the key is the full path to the header file, which isn't testable - assert undoc_c.values()[0] == [('function', 'Py_SphinxTest')] + assert list(undoc_c.values())[0] == [('function', 'Py_SphinxTest')] assert 'test_autodoc' in undoc_py assert 'funcs' in undoc_py['test_autodoc'] |
