Skip to content

Commit af8cf46

Browse files
committed
Fix long string and remove a misplaced comma
1 parent aa71fbb commit af8cf46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/tests/test_validate_docstrings.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,8 @@ def test_bad_generic_functions(self, func):
617617
marks=pytest.mark.xfail),
618618
# See Also tests
619619
('BadSeeAlso', 'prefix_pandas',
620-
('pandas.Series.rename in `See Also` section does not need `pandas` prefix',)),
620+
('pandas.Series.rename in `See Also` section '
621+
'does not need `pandas` prefix',))
621622
])
622623
def test_bad_examples(self, capsys, klass, func, msgs):
623624
result = validate_one(self._import_path(klass=klass, func=func)) # noqa:F821

0 commit comments

Comments
 (0)