Skip to content

Commit af97126

Browse files
committed
Update test
1 parent 7007205 commit af97126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/base/methods.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class BaseMethodsTests(BaseExtensionTests):
1717

1818
@pytest.mark.parametrize("dropna", [True, False])
1919
def test_value_counts(self, all_data, dropna):
20-
all_data = np.unique(all_data[:5])
20+
all_data = all_data[:10].unique()
2121
if dropna:
2222
other = np.array(all_data[~all_data.isna()])
2323
else:

0 commit comments

Comments
 (0)