8000 TST: fix warning for pie chart by ivanovmg · Pull Request #37669 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

TST: fix warning for pie chart #37669

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
Nov 8, 2020
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
Next Next commit
TST: fix warning for pie chart
  • Loading branch information
ivanovmg committed Nov 6, 2020
commit 1ced494d8a4ae0a68a6cea1e047d62781af52908
2 changes: 1 addition & 1 deletion pandas/tests/plotting/test_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2654,7 +2654,7 @@ def test_pie_df_nan(self):
for i in range(4):
df.iloc[i, i] = np.nan
fig, axes = self.plt.subplots(ncols=4)
df.plot.pie(subplots=True, ax=axes, legend=True)
df.plot.pie(subplots=True, ax=axes, legend=True, normalize=True)

base_expected = ["0", "1", "2", "3"]
for i, ax in enumerate(axes):
Expand Down
0