Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport PR #55993 on branch 2.1.x (TST update and simplify consortium api test) #56112

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading