Skip to content

Commit 96216c0

Browse files
committed
TST: Correct for escapes before * and self in methods
1 parent 3f7f7ce commit 96216c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpydoc/tests/test_full.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def test_MyClass(sphinx_app):
5858
# if we see a \* in the output we know it's incorrect:
5959
assert r'\*' not in html
6060
# "self" should not be in the parameter list for the class:
61-
assert 'self,' in html # XXX should be "not in", bug!
61+
assert 'self,' not in html
6262
# check xref was embedded properly (dict should link using xref):
6363
assert 'stdtypes.html#dict' in html
6464

0 commit comments

Comments
 (0)