()
| 504 | |
| 505 | |
| 506 | def test_matshow(): |
| 507 | fig = plt.figure() |
| 508 | arr = [[0, 1], [1, 2]] |
| 509 | |
| 510 | # Smoke test that matshow does not ask for a new figsize on the existing figure |
| 511 | plt.matshow(arr, fignum=fig.number) |
| 512 | |
| 513 | |
| 514 | def assert_same_signature(func1, func2): |