Skip to content

Commit

Permalink
TST: add missing assert in test_apply_datetimetz in test_series_app…
Browse files Browse the repository at this point in the history
…ly.py (#55700)
  • Loading branch information
yuanx749 authored Oct 26, 2023
1 parent 5e872ce commit d7b9443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/apply/test_series_apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def f(x):
exp = Series(["Asia/Tokyo"] * 25, name="XX")
tm.assert_series_equal(result, exp)
else:
result == "Asia/Tokyo"
assert result == "Asia/Tokyo"


def test_apply_categorical(by_row):
Expand Down

0 comments on commit d7b9443

Please sign in to comment.