Skip to content

Commit 0209430

Browse files
committed
Fix long string and remove a misplaced comma
1 parent 785a7c0 commit 0209430

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
@@ -673,7 +673,8 @@ def test_bad_generic_functions(self, func):
673673
marks=pytest.mark.xfail),
674674
# See Also tests
675675
('BadSeeAlso', 'prefix_pandas',
676-
('pandas.Series.rename in `See Also` section does not need `pandas` prefix',)),
676+
('pandas.Series.rename in `See Also` section '
677+
'does not need `pandas` prefix',))
677678
])
678679
def test_bad_examples(self, capsys, klass, func, msgs):
679680
result = validate_one(self._import_path(klass=klass, func=func)) # noqa:F821

0 commit comments

Comments
 (0)