We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d406b31 commit d3ef588Copy full SHA for d3ef588
pandas/tests/plotting/test_misc.py
@@ -81,6 +81,8 @@ def scat(**kwds):
81
_check_plot_works(scat, color='rgb')
82
with tm.assert_produces_warning(UserWarning):
83
_check_plot_works(scat, c='rgb')
84
+ with tm.assert_produces_warning(UserWarning):
85
+ _check_plot_works(scat, facecolor='rgb')
86
87
def scat2(x, y, by=None, ax=None, figsize=None):
88
return plotting.scatter_plot(df, x, y, by, ax, figsize=None)
0 commit comments