From 11dc0793b5ad2f66ba4a6ee236a42e7901f487f4 Mon Sep 17 00:00:00 2001 From: Loic Diridollou Date: Thu, 21 Nov 2024 17:33:08 -0500 Subject: [PATCH] GH1037 PR feedback --- tests/test_pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pandas.py b/tests/test_pandas.py index 7411ac81..cafa4fba 100644 --- a/tests/test_pandas.py +++ b/tests/test_pandas.py @@ -790,7 +790,7 @@ def test_lreshape() -> None: def test_factorize() -> None: - codes, uniques = pd.factorize(np.array(["b", "b", "a", "c", "b"]), sort=False) + codes, uniques = pd.factorize(np.array(["b", "b", "a", "c", "b"])) check(assert_type(codes, np.ndarray), np.ndarray) check(assert_type(uniques, np.ndarray), np.ndarray)