From 0fb1f6766d01ec9cd1b9a841f8d3a5c5dfbf2421 Mon Sep 17 00:00:00 2001 From: Emily KL <4672118+emilykl@users.noreply.github.com> Date: Mon, 7 Apr 2025 14:27:42 -0400 Subject: [PATCH] remove ff.create_choropleth test --- .../test_figure_factory.py | 60 ------------------- 1 file changed, 60 deletions(-) diff --git a/tests/test_optional/test_figure_factory/test_figure_factory.py b/tests/test_optional/test_figure_factory/test_figure_factory.py index 3f0ee0fe5b..b0d623776d 100644 --- a/tests/test_optional/test_figure_factory/test_figure_factory.py +++ b/tests/test_optional/test_figure_factory/test_figure_factory.py @@ -4108,66 +4108,6 @@ def test_scope_is_not_list(self): scope="foo", ) - def test_full_choropleth(self): - fips = [1001] - values = [1] - fig = ff.create_choropleth(fips=fips, values=values, simplify_county=1) - - exp_fig_head = ( - -88.053375, - -88.02916499999999, - -88.02432999999999, - -88.04504299999999, - -88.053375, - np_nan(), - -88.211209, - -88.209999, - -88.208733, - -88.209559, - -88.211209, - np_nan(), - -88.22511999999999, - -88.22128099999999, - -88.218694, - -88.22465299999999, - -88.22511999999999, - np_nan(), - -88.264659, - -88.25782699999999, - -88.25947, - -88.255659, - -88.264659, - np_nan(), - -88.327302, - -88.20146799999999, - -88.141143, - -88.124658, - -88.074854, - -88.12493599999999, - -88.10665399999999, - -88.149812, - -88.327302, - np_nan(), - -88.346745, - -88.341235, - -88.33288999999999, - -88.346823, - -88.346745, - np_nan(), - -88.473227, - -88.097888, - -88.154617, - -88.20295899999999, - -85.605165, - -85.18440000000001, - -85.12218899999999, - -85.142567, - -85.113329, - -85.10533699999999, - ) - - self.assertEqual(fig["data"][2]["x"][:50], exp_fig_head) - class TestQuiver(TestCaseNoTemplate): def test_scaleratio_param(self):