File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
pandas/tests/indexes/object Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 33import numpy as np
44import pytest
55
6- from pandas ._libs .missing import (
7- NA ,
8- is_matching_na ,
9- )
6+ from pandas ._libs .missing import is_matching_na
107
118from pandas import Index
129import pandas ._testing as tm
@@ -67,12 +64,8 @@ def test_get_indexer_with_NA_values(
6764
6865
6966class TestGetIndexerNonUnique :
70- def test_get_indexer_non_unique_nas (
71- self , nulls_fixture , request , using_infer_string
72- ):
67+ def test_get_indexer_non_unique_nas (self , nulls_fixture ):
7368 # even though this isn't non-unique, this should still work
74- if using_infer_string and (nulls_fixture is None or nulls_fixture is NA ):
75- request .applymarker (pytest .mark .xfail (reason = "NAs are cast to NaN" ))
7669 index = Index (["a" , "b" , nulls_fixture ], dtype = object )
7770 indexer , missing = index .get_indexer_non_unique ([nulls_fixture ])
7871
You can’t perform that action at this time.
0 commit comments