From 05490f62216f0564ae8f35ea7e6c6aa08c6c0e0c Mon Sep 17 00:00:00 2001 From: Julius <juliusflorstedt@gmail.com> Date: Sun, 2 Feb 2025 16:20:04 +0100 Subject: [PATCH] again on right plot_surface call --- tests_automatic/test_surface3d_automatic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests_automatic/test_surface3d_automatic.py b/tests_automatic/test_surface3d_automatic.py index 2e47cce..6aa29d4 100644 --- a/tests_automatic/test_surface3d_automatic.py +++ b/tests_automatic/test_surface3d_automatic.py @@ -40,10 +40,10 @@ def test_surface_properties( _, serializer_ax = serializer.subplots(subplot_kw={"projection": "3d"}) _fig, ax = plt.subplots(subplot_kw={"projection": "3d"}) try: - ax.plot_surface(x, y, z) + ax.plot_surface(x, y, z) # type: ignore except Exception as _e: plt.close() else: - serializer_ax.plot_surface(x, y, z) # type: ignore + serializer_ax.plot_surface(x, y, z) assert serializer.to_json() != "{}", "Serialized JSON is empty check input" plt.close() -- GitLab