8000 TST/REF: collect tests by method from test_io by jbrockmendel · Pull Request #37451 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

TST/REF: collect tests by method from test_io #37451

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 9 commits into from
Oct 29, 2020
Prev Previous commit
Next Next commit
lint fixup
  • Loading branch information
jbrockmendel committed Oct 28, 2020
commit 0e46be632d48c9e37db0a5c8e9fc2b24e09e70be
2 changes: 1 addition & 1 deletion pandas/tests/io/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def __init__(self):

def test_read_pickle_with_subclass():
# GH 12163
expected = pd.Series(dtype=object), MyTz()
expected = Series(dtype=object), MyTz()
result = tm.round_trip_pickle(expected)

tm.assert_series_equal(result[0], expected[0])
Expand Down
0