From 668d0bd9ab68edc3db306e9f8fee330d87f7967f Mon Sep 17 00:00:00 2001 From: ivonastojanovic <80911834+ivonastojanovic@users.noreply.github.com> Date: Sat, 20 Jul 2024 15:44:39 +0000 Subject: [PATCH] DOCS: Add docstrings to fixture in /indexes/categorical/test_category.py Add docstrings to fixture in /indexes/categorical/test_category.py file. --- pandas/tests/indexes/categorical/test_category.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandas/tests/indexes/categorical/test_category.py b/pandas/tests/indexes/categorical/test_category.py index 03a298a13dc2b..4a65d65c03d91 100644 --- a/pandas/tests/indexes/categorical/test_category.py +++ b/pandas/tests/indexes/categorical/test_category.py @@ -21,6 +21,9 @@ class TestCategoricalIndex: @pytest.fixture def simple_index(self) -> CategoricalIndex: + """ + Fixture that provides a CategoricalIndex. + """ return CategoricalIndex(list("aabbca"), categories=list("cab"), ordered=False) def test_can_hold_identifiers(self):