Skip to content

Commit

Permalink
GH1037 PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
loicdiridollou committed Nov 21, 2024
1 parent dd7724c commit 11dc079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 11dc079

Please sign in to comment.