-
-
Notifications
You must be signed in to change notification settings - Fork 18k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DEPR: remove some more Int/UInt/Float64Index from tests #50075
DEPR: remove some more Int/UInt/Float64Index from tests #50075
Conversation
pandas/tests/indexes/test_base.py::TestIndex::test_reindex_doesnt_preserve_type_if_target_is_empty_index_numeric |
I’ve updated the PR. |
@@ -1148,10 +1139,19 @@ def test_reindex_doesnt_preserve_type_if_target_is_empty_index(self, labels, dty | |||
index = Index(list("abc")) | |||
assert index.reindex(labels)[0].dtype.type == dtype | |||
|
|||
def test_reindex_doesnt_preserve_type_if_target_is_empty_index_numeric( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this moved from somewhere else or a new test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
thanks @topper-123 |
Progress towards #42717, one easy step at a time...
There are still some places that have these indexes, but maybe easier taking these things in steps.