From d2fc8a7c24164416e6882177d69c52cbd4d5782f Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Sat, 28 Dec 2024 16:56:27 -0700 Subject: [PATCH] fix the scatter plot test --- tests/web_components/scatter_plot_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/web_components/scatter_plot_test.py b/tests/web_components/scatter_plot_test.py index 2630ebebc..6aa0d539d 100644 --- a/tests/web_components/scatter_plot_test.py +++ b/tests/web_components/scatter_plot_test.py @@ -15,7 +15,7 @@ def test_scatter_plot(): plot = ScatterPlot() # Update the properties (the figure is the first element in the property list) - all_properties = plot.update_properties(fs) + all_properties = plot.update_properties(fs.pull_dataframe()) figure = all_properties[0] figure.show()