Skip to content

Commit

Permalink
CLN: np.object to object (pandas-dev#35498)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhlim committed Aug 11, 2020
1 parent d902013 commit 3367203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/indexes/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def test_getitem_deprecated_float(idx):
np.array([0, 2, 1], dtype=np.int64),
),
(
np.array([np.nan, "var1", np.nan], dtype=np.object),
np.array([np.nan, "var1", np.nan], dtype=object),
[np.nan],
np.array([0, 2], dtype=np.int64),
),
Expand Down

0 comments on commit 3367203

Please sign in to comment.