Skip to content

TST: Update test in #28798 to use a Categorical #28824

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

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
7 changes: 5 additions & 2 deletions pandas/tests/groupby/test_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -1195,9 +1195,12 @@ def test_groupby_categorical_axis_1(code):
assert_frame_equal(result, expected)


def test_groupby_cat_preserves_structure(observed):
def test_groupby_cat_preserves_structure(observed, ordered_fixture):
# GH 28787
df = DataFrame([("Bob", 1), ("Greg", 2)], columns=["Name", "Item"])
df = DataFrame(
{"Name": Categorical(["Bob", "Greg"], ordered=ordered_fixture), "Item": [1, 2]},
columns=["Name", "Item"],
)
expected = df.copy()

result = (
Expand Down