8000 TST: Add tests for duplicated and drop_duplicates by mproszewska · Pull Request #32575 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

TST: Add tests for duplicated and drop_duplicates #32575

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

Merged
merged 14 commits into from
Apr 6, 2020
Merged
Prev Previous commit
Next Next commit
TST: Delete negative values in period
  • Loading branch information
mproszewska committed Mar 10, 2020
commit 8b094506f913f73ee71a1f0025253dad0bf7412e
2 changes: 1 addition & 1 deletion pandas/tests/indexes/period/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_value_counts_unique(self):
tm.assert_index_equal(idx.unique(), exp_idx)

@pytest.mark.parametrize(
"freq", ["D", "3D", "-3D", "H", "2H", "-2H", "T", "2T", "S", "-3S"]
"freq", ["D", "3D", "H", "2H", "T", "2T", "S", "3S"]
)
def test_drop_duplicates_metadata(self, freq):
# GH 10115
Expand Down
0