Skip to content
Prev Previous commit
Next Next commit
simplify test
  • Loading branch information
Rohan Jain committed Dec 29, 2023
commit 80a697692eba74e9abcf334c7a53594ce56b58d8
5 changes: 1 addition & 4 deletions pandas/tests/extension/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3249,11 +3249,8 @@ def test_arrow_floordiv_large_values():
def test_arrow_floordiv_large_integral_result():
# GH 56676
a = pd.Series([18014398509481983, -9223372036854775808], dtype="int64[pyarrow]")
expected = pd.Series(
[18014398509481983, -9223372036854775808], dtype="int64[pyarrow]"
)
result = a // 1
tm.assert_series_equal(result, expected)
tm.assert_series_equal(result, a)


def test_string_to_datetime_parsing_cast():
Expand Down