()
| 7852 | |
| 7853 | |
| 7854 | def test_none_kwargs(): |
| 7855 | ax = plt.figure().subplots() |
| 7856 | ln, = ax.plot(range(32), linestyle=None) |
| 7857 | assert ln.get_linestyle() == '-' |
| 7858 | |
| 7859 | |
| 7860 | def test_bar_uint8(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…