Skip to content

Commit d3ef588

Browse files
TST: add facecolor test
1 parent d406b31 commit d3ef588

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/plotting/test_misc.py

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ def scat(**kwds):
8181
_check_plot_works(scat, color='rgb')
8282
with tm.assert_produces_warning(UserWarning):
8383
_check_plot_works(scat, c='rgb')
84+
with tm.assert_produces_warning(UserWarning):
85+
_check_plot_works(scat, facecolor='rgb')
8486

8587
def scat2(x, y, by=None, ax=None, figsize=None):
8688
return plotting.scatter_plot(df, x, y, by, ax, figsize=None)

0 commit comments

Comments
 (0)