summaryrefslogtreecommitdiff
path: root/tests/test_ext_coverage.py
diff options
context:
space:
mode:
authorTakayuki Shimizukawa <shimizukawa@gmail.com>2014-10-07 23:12:16 +0900
committerTakayuki Shimizukawa <shimizukawa@gmail.com>2014-10-07 23:12:16 +0900
commita7de6a25753a98e595efd3ce9a7f97b1cbe94715 (patch)
tree6414fefe029b6f98467908f958aafcc707b41e7c /tests/test_ext_coverage.py
parentd7ee60571b1432362d2ac1445bb2b043a5cb8b15 (diff)
downloadsphinx-git-a7de6a25753a98e595efd3ce9a7f97b1cbe94715.tar.gz
fix testing for ad7ce315a358
Diffstat (limited to 'tests/test_ext_coverage.py')
-rw-r--r--tests/test_ext_coverage.py2
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']