diff options
author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-10-07 23:12:16 +0900 |
---|---|---|
committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-10-07 23:12:16 +0900 |
commit | a7de6a25753a98e595efd3ce9a7f97b1cbe94715 (patch) | |
tree | 6414fefe029b6f98467908f958aafcc707b41e7c /tests/test_ext_coverage.py | |
parent | d7ee60571b1432362d2ac1445bb2b043a5cb8b15 (diff) | |
download | sphinx-git-a7de6a25753a98e595efd3ce9a7f97b1cbe94715.tar.gz |
fix testing for ad7ce315a358
Diffstat (limited to 'tests/test_ext_coverage.py')
-rw-r--r-- | tests/test_ext_coverage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ext_coverage.py b/tests/test_ext_coverage.py index ec1916d94..e59d42bc7 100644 --- a/tests/test_ext_coverage.py +++ b/tests/test_ext_coverage.py @@ -38,7 +38,7 @@ def test_build(app, status, warning): 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 list(undoc_c.values())[0] == [('function', 'Py_SphinxTest')] + assert list(undoc_c.values())[0] == set([('function', 'Py_SphinxTest')]) assert 'test_autodoc' in undoc_py assert 'funcs' in undoc_py['test_autodoc'] |