diff --git a/tests/test_utils.py b/tests/test_utils.py index 048b7d2..3d527a4 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -10,7 +10,7 @@ ) -def tset_save_plotly_figure(tmpdir): +def test_save_plotly_figure(tmpdir): fig = px.scatter(x=[0, 1, 2, 3, 4], y=[0, 1, 4, 9, 16]) out_path = os.path.join(tmpdir.strpath, "fig.html") save_plotly_figure(fig, out_path)