We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf2e43 commit 1af0a95Copy full SHA for 1af0a95
pandas/tests/extension/test_arrow.py
@@ -3333,9 +3333,9 @@ def test_factorize_chunked_dictionary():
3333
)
3334
ser = pd.Series(ArrowExtensionArray(pa_array))
3335
res_indices, res_uniques = ser.factorize()
3336
- exp_indicies = np.array([0, 1], dtype=np.intp)
+ exp_indices = np.array([0, 1], dtype=np.intp)
3337
exp_uniques = pd.Index(ArrowExtensionArray(pa_array.combine_chunks()))
3338
- tm.assert_numpy_array_equal(res_indices, exp_indicies)
+ tm.assert_numpy_array_equal(res_indices, exp_indices)
3339
tm.assert_index_equal(res_uniques, exp_uniques)
3340
3341
0 commit comments