Skip to content

Commit c2fc50e

Browse files
committed
done
1 parent e8185b4 commit c2fc50e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/test_algos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ def test_factorize_complex(self):
6464
tm.assert_numpy_array_equal(uniques, expected_uniques)
6565

6666
@pytest.mark.parametrize(
67-
"param_obj", [[1, 2, 3], ["a", "b", "c"], [0, "a", 1, "b", 2, "c"]])
67+
"param_obj", [[1, 2, 3], ["a", "b", "c"], [0, "a", 1, "b", 2, "c"]]
68+
)
6869
@pytest.mark.parametrize("sort", [True, False])
6970
def test_factorize(self, param_obj, sort):
7071
obj = Index(param_obj)

0 commit comments

Comments
 (0)