Remove duplicate test in test_ext_autodoc.py

Duplicate since c6bd84a614.
This commit is contained in:
Jon Dufresne
2020-12-12 06:23:40 -08:00
parent 8faa8ba7ab
commit 850512090a

View File

@@ -367,11 +367,6 @@ def test_get_doc(app):
"""Döcstring""" """Döcstring"""
assert getdocl('function', f) == ['Döcstring'] assert getdocl('function', f) == ['Döcstring']
# already-unicode docstrings must be taken literally
def f():
"""Döcstring"""
assert getdocl('function', f) == ['Döcstring']
# verify that method docstrings get extracted in both normal case # verify that method docstrings get extracted in both normal case
# and in case of bound method posing as a function # and in case of bound method posing as a function
class J: # NOQA class J: # NOQA