()
| 7182 | |
| 7183 | |
| 7184 | def test_pathological_hexbin(): |
| 7185 | # issue #2863 |
| 7186 | mylist = [10] * 100 |
| 7187 | fig, ax = plt.subplots(1, 1) |
| 7188 | ax.hexbin(mylist, mylist) |
| 7189 | fig.savefig(io.BytesIO()) # Check that no warning is emitted. |
| 7190 | |
| 7191 | |
| 7192 | def test_color_None(): |