Skip to content

Commit 1ced494

Browse files
committed
TST: fix warning for pie chart
1 parent 8b05fe3 commit 1ced494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/plotting/test_frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2654,7 +2654,7 @@ def test_pie_df_nan(self):
26542654
for i in range(4):
26552655
df.iloc[i, i] = np.nan
26562656
fig, axes = self.plt.subplots(ncols=4)
2657-
df.plot.pie(subplots=True, ax=axes, legend=True)
2657+
df.plot.pie(subplots=True, ax=axes, legend=True, normalize=True)
26582658

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

0 commit comments

Comments
 (0)