Skip to content

Commit efe9ac9

Browse files
fix merge issue
1 parent 481afe7 commit efe9ac9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/system/small/operations/test_datetimes.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,7 @@ def test_dt_tz_localize(scalars_dfs, col_name, tz):
339339
bf_result = bf_series.dt.tz_localize(tz)
340340
pd_result = scalars_pandas_df[col_name].dt.tz_localize(tz)
341341

342-
testing.assert_series_equal(
343-
bf_result.to_pandas(), pd_result, check_index_type=False
344-
)
342+
assert_series_equal(bf_result.to_pandas(), pd_result, check_index_type=False)
345343

346344

347345
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)