diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index c541c5792ec7c..8e3d7780224fe 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -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():