From 850512090aeda39cbca7652a721a7fb57eec2852 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 12 Dec 2020 06:23:40 -0800 Subject: [PATCH] Remove duplicate test in test_ext_autodoc.py Duplicate since c6bd84a61467a5a60adb11af7b5a7b99ac591fbf. --- tests/test_ext_autodoc.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index 02ffae549..1577f32e6 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -367,11 +367,6 @@ def test_get_doc(app): """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 # and in case of bound method posing as a function class J: # NOQA