Skip to content

Commit 218071c

Browse files
committed
Fix line length issue in test_algos.py
1 parent 77d3069 commit 218071c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_algos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def test_factorize(self, index_or_series_obj, sort):
7777
pytest.skip("Skipping test for empty Index")
7878

7979
if obj.name == "mixed-int-string" or obj.name is None:
80-
pytest.skip("Skipping test for mixed-int-string due to unsupported comparison between str and int")
81-
80+
skip_message = "Skipping test for mixed-int-string due to unsupported comparison between str and int"
81+
pytest.skip(skip_message)
8282

8383
result_codes, result_uniques = obj.factorize(sort=sort)
8484

0 commit comments

Comments
 (0)