8000 Fixed missing headers in tests for bug fix for matplotlib#16552 · CSCD01/matplotlib-team28@2d99501 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2d99501

Browse files
committed
Fixed missing headers in tests for bug fix for matplotlib#16552
1 parent f58bdfd commit 2d99501

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6359,6 +6359,7 @@ def test_scatter_autoscaling_w_zero_xy(fig_test, fig_ref):
63596359
ax_ref.set_yscale('log')
63606360
ax_ref.plot(pts[:,0], pts[:,1], marker="o", ls="")
63616361

6362+
@check_figures_equal()
63626363
def test_scatter_autoscaling_w_zero_x(fig_test, fig_ref):
63636364
x_vals = [0, 4.38462e-06, 5.54929e-06, 7.02332e-06, 8.88889e-06]
63646365
y_vals = [0.10000000000000002, 0.182, 0.332, 0.604]
@@ -6373,6 +6374,7 @@ def test_scatter_autoscaling_w_zero_x(fig_test, fig_ref):
63736374
ax_ref.set_yscale('log')
63746375
ax_ref.plot(pts[:,0], pts[:,1], marker="o", ls="")
63756376

6377+
@check_figures_equal()
63766378
def test_scatter_autoscaling_w_zero_y(fig_test, fig_ref):
63776379
x_vals = [4.38462e-06, 5.54929e-06, 7.02332e-06, 8.88889e-06]
63786380
y_vals = [0, 0.10000000000000002, 0.182, 0.332, 0.604]
@@ -6387,6 +6389,7 @@ def test_scatter_autoscaling_w_zero_y(fig_test, fig_ref):
63876389
ax_ref.set_yscale('log')
63886390
ax_ref.plot(pts[:,0], pts[:,1], marker="o", ls="")
63896391

6392+
@check_figures_equal()
63906393
def test_scatter_autoscaling_wo_zero(fig_test, fig_ref):
63916394
x_vals = [4.38462e-06, 5.54929e-06, 7.02332e-06, 8.88889e-06]
63926395
y_vals = [0.10000000000000002, 0.182, 0.332, 0.604]

0 commit comments

Comments
 (0)
0