Skip to content

Commit 5fdff96

Browse files
GH1071 Fix test
1 parent 5209209 commit 5fdff96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2766,7 +2766,7 @@ def test_astype_other() -> None:
27662766

27672767
def test_all_astype_args_tested() -> None:
27682768
"""Check that all relevant numpy type aliases are tested."""
2769-
NUMPY_ALIASES: set[str] = {k for k in np.sctypeDict if isinstance(k, str)}
2769+
NUMPY_ALIASES: set[str] = {k for k in np.sctypeDict}
27702770
EXCLUDED_ALIASES = {
27712771
"datetime64",
27722772
"m",

0 commit comments

Comments
 (0)