Skip to content

Commit

Permalink
#116 Update test for typing module
Browse files Browse the repository at this point in the history
  • Loading branch information
astropenguin committed Nov 15, 2022
1 parent ea1c1c8 commit dcd04bc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
(Data[Any], None),
(Data[None], None),
(Data[int], np.dtype("i8")),
(Data[Union[int, None]], np.dtype("i8")),
(Data[L["i8"]], np.dtype("i8")),
(Data[L["boolean"]], pd.BooleanDtype()),
(Data[L["category"]], pd.CategoricalDtype()),
(Index[Any], None),
(Index[None], None),
(Index[int], np.dtype("i8")),
(Index[Union[int, None]], np.dtype("i8")),
(Index[L["i8"]], np.dtype("i8")),
(Index[L["boolean"]], pd.BooleanDtype()),
(Index[L["category"]], pd.CategoricalDtype()),
Expand Down

0 comments on commit dcd04bc

Please sign in to comment.