8000 TST: Fixturize tests/frame/test_missing.py by h-vetinari · Pull Request #25640 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

TST: Fixturize tests/frame/test_missing.py #25640

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 4 commits into from
Mar 19, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Review (WillAyd)
  • Loading branch information
h-vetinari committed Mar 11, 2019
commit 0eca8c7a46cb13706f754d1af98d5c019dfc57d2
5 changes: 3 additions & 2 deletions pandas/tests/frame/test_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,9 @@ def test_fillna_mixed_type(self, float_string_frame):
mf = float_string_frame
mf.loc[mf.index[5:20], 'foo'] = np.nan
mf.loc[mf.index[-10:], 'A'] = np.nan
result = float_string_frame.fillna(value=0)
result = float_string_frame.fillna(method='pad') # noqa
# TODO: make stronger assertion here, GH 25640
mf.fillna(value=0)
mf.fillna(method='pad')

def test_fillna_mixed_float(self, mixed_float_frame):

Expand Down
0