diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-31 01:38:12 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-31 01:51:37 +0900 |
commit | b0b51cecc27be0ead1b9fb46a7d5bd17d36fef8a (patch) | |
tree | 16e5d43467162bd082137757a668df20b89cd568 /tests/test_ext_autodoc_autodata.py | |
parent | 799385f5558a888d1a143bf703d06b66d6717fe4 (diff) | |
download | sphinx-git-b0b51cecc27be0ead1b9fb46a7d5bd17d36fef8a.tar.gz |
Close #10146: autodoc: autodoc_default_options does not support `no-value` option
Diffstat (limited to 'tests/test_ext_autodoc_autodata.py')
-rw-r--r-- | tests/test_ext_autodoc_autodata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ext_autodoc_autodata.py b/tests/test_ext_autodoc_autodata.py index 9fbfaaf39..7d6d9eb30 100644 --- a/tests/test_ext_autodoc_autodata.py +++ b/tests/test_ext_autodoc_autodata.py @@ -32,7 +32,7 @@ def test_autodata(app): @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodata_novalue(app): - options = {'no-value': True} + options = {'no-value': None} actual = do_autodoc(app, 'data', 'target.integer', options) assert list(actual) == [ '', |