()
| 5941 | |
| 5942 | |
| 5943 | def test_subplot_key_hash(): |
| 5944 | ax = plt.subplot(np.int32(5), np.int64(1), 1) |
| 5945 | ax.twinx() |
| 5946 | assert ax.get_subplotspec().get_geometry() == (5, 1, 0, 0) |
| 5947 | |
| 5948 | |
| 5949 | @image_comparison( |
nothing calls this directly
no test coverage detected
searching dependent graphs…