(fig_test, fig_ref)
| 340 | |
| 341 | @check_figures_equal() |
| 342 | def test_plot_scalar(fig_test, fig_ref): |
| 343 | ax1 = fig_test.add_subplot(projection='3d') |
| 344 | ax1.plot([1], [1], "o") |
| 345 | ax2 = fig_ref.add_subplot(projection='3d') |
| 346 | ax2.plot(1, 1, "o") |
| 347 | |
| 348 | |
| 349 | def test_invalid_line_data(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…