diff --git a/tests_automatic/test_scatter3d_automatic.py b/tests_automatic/test_scatter3d_automatic.py
index 68756146d802ecdd7229ca86cf2991e1225053a0..8bfcd5283a44963f86c5efe1ca7799267597e26a 100644
--- a/tests_automatic/test_scatter3d_automatic.py
+++ b/tests_automatic/test_scatter3d_automatic.py
@@ -48,7 +48,7 @@ def test_scatter3d_properties(
     _, serializer_ax = serializer.subplots(subplot_kw={"projection": "3d"})
     _fig, ax = plt.subplots(subplot_kw={"projection": "3d"})
     try:
-        ax.scatter(x, y, z, s=s, label=label)
+        ax.scatter(x, y, z, s=s, label=label)  # type: ignore
     except Exception as _e:
         plt.close()
     else: