Skip to content

Commit

Permalink
Backport PR #55993: TST update and simplify consortium api test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli authored and meeseeksmachine committed Nov 22, 2023
1 parent a8703c0 commit 006ec0f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pandas/tests/test_downstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,9 @@ def test_dataframe_consortium() -> None:
expected_1 = ["a", "b"]
assert result_1 == expected_1

ser = Series([1, 2, 3])
ser = Series([1, 2, 3], name="a")
col = ser.__column_consortium_standard__()
result_2 = col.get_value(1)
expected_2 = 2
assert result_2 == expected_2
assert col.name == "a"


def test_xarray_coerce_unit():
Expand Down

0 comments on commit 006ec0f

Please sign in to comment.