Skip to content

Commit fc60870

Browse files
authored
STY: spaces in wrong place (#32323)
1 parent edcf1c8 commit fc60870

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/tests/base/test_ops.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ def test_value_counts_unique_nunique(self, index_or_series_obj):
213213

214214
if orig.duplicated().any():
215215
pytest.xfail(
216-
"The test implementation isn't flexible enough to deal"
217-
" with duplicated values. This isn't a bug in the"
218-
" application code, but in the test code."
216+
"The test implementation isn't flexible enough to deal "
217+
"with duplicated values. This isn't a bug in the "
218+
"application code, but in the test code."
219219
)
220220

221221
# create repeated values, 'n'th element is repeated by n+1 times
@@ -279,9 +279,9 @@ def test_value_counts_unique_nunique_null(self, null_obj, index_or_series_obj):
279279
pytest.skip("MultiIndex doesn't support isna")
280280
elif orig.duplicated().any():
281281
pytest.xfail(
282-
"The test implementation isn't flexible enough to deal"
283-
" with duplicated values. This isn't a bug in the"
284-
" application code, but in the test code."
282+
"The test implementation isn't flexible enough to deal "
283+
"with duplicated values. This isn't a bug in the "
284+
"application code, but in the test code."
285285
)
286286

287287
# special assign to the numpy array

0 commit comments

Comments
 (0)