Skip to content

Commit cdc2f09

Browse files
committed
add coments
1 parent 405037f commit cdc2f09

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pandas/tests/extension/base/methods.py

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def test_value_counts(self, all_data, dropna):
2929
self.assert_series_equal(result, expected)
3030

3131
def test_value_counts_with_normalize(self, data):
32+
# GH 33172
3233
data = data[:10].unique()
3334
values = np.array(data[~data.isna()])
3435

pandas/tests/extension/test_numpy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class TestMethods(BaseNumPyTests, base.BaseMethodsTests):
199199
def test_value_counts(self, all_data, dropna):
200200
pass
201201

202-
@pytest.mark.xfail(reason="not working")
202+
@pytest.mark.xfail(reason="not working. will be covered by #32028")
203203
def test_value_counts_with_normalize(self, data):
204204
return super().test_value_counts_with_normalize(data)
205205

0 commit comments

Comments
 (0)