Skip to content

Commit 11dc079

Browse files
GH1037 PR feedback
1 parent dd7724c commit 11dc079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pandas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ def test_lreshape() -> None:
790790

791791

792792
def test_factorize() -> None:
793-
codes, uniques = pd.factorize(np.array(["b", "b", "a", "c", "b"]), sort=False)
793+
codes, uniques = pd.factorize(np.array(["b", "b", "a", "c", "b"]))
794794
check(assert_type(codes, np.ndarray), np.ndarray)
795795
check(assert_type(uniques, np.ndarray), np.ndarray)
796796

0 commit comments

Comments
 (0)