We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7007205 commit af97126Copy full SHA for af97126
pandas/tests/extension/base/methods.py
@@ -17,7 +17,7 @@ class BaseMethodsTests(BaseExtensionTests):
17
18
@pytest.mark.parametrize("dropna", [True, False])
19
def test_value_counts(self, all_data, dropna):
20
- all_data = np.unique(all_data[:5])
+ all_data = all_data[:10].unique()
21
if dropna:
22
other = np.array(all_data[~all_data.isna()])
23
else:
0 commit comments