Skip to content

Commit 987fc51

Browse files
Ihor DykhtaIhor Dykhta
authored andcommitted
follow up
Signed-off-by: Ihor Dykhta <ihordykhta@Ihors-MacBook-Pro.local>
1 parent b208465 commit 987fc51

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bindings/python/keplergl/_html_export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def export_map_html(
299299
}}(Redux, middleWares));
300300
301301
const store = (function createStore(redux, enhancers) {{
302-
return redux.createStore(reducers, {{}}, redux.compose(enhancers));
302+
return redux.legacy_createStore(reducers, {{}}, redux.compose(enhancers));
303303
}}(Redux, enhancers));
304304
/** END STORE **/
305305

bindings/python/tests/test_html_export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def test_contains_kepler_gl_cdn_script(self, sample_df):
342342
assert "unpkg.com/kepler.gl@3.2.6/umd/keplergl.min.js" in html
343343
assert "unpkg.com/kepler.gl@3.2.6/umd/keplergl.min.css" in html
344344

345-
def test_default_uses_latest_stable_cdn_tag(self, sample_df):
345+
def test_default_cdn_version(self, sample_df):
346346
html = export_map_html(data={"test": sample_df}, config={})
347347
assert "unpkg.com/kepler.gl@3.3.0-alpha.4/umd/keplergl.min.js" in html
348348
assert "unpkg.com/kepler.gl@3.3.0-alpha.4/umd/keplergl.min.css" in html

0 commit comments

Comments
 (0)