diff --git a/superset-frontend/plugins/plugin-chart-country-map/test/plugin/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-country-map/test/plugin/transformProps.test.ts index 421e8bc5a2c..e57498602e7 100644 --- a/superset-frontend/plugins/plugin-chart-country-map/test/plugin/transformProps.test.ts +++ b/superset-frontend/plugins/plugin-chart-country-map/test/plugin/transformProps.test.ts @@ -18,10 +18,7 @@ */ import { ChartProps } from '@superset-ui/core'; import transformProps from '../../src/plugin/transformProps'; -import { - CountryMapChartProps, - CountryMapFormData, -} from '../../src/types'; +import { CountryMapChartProps, CountryMapFormData } from '../../src/types'; const baseFormData: CountryMapFormData = { datasource: '3__table', @@ -43,7 +40,9 @@ test('Admin 0 (no country) → world choropleth URL', () => { const out = transformProps( buildChartProps({ admin_level: 0, worldview: 'ukr' }), ); - expect(out.geoJsonUrl).toBe('/static/assets/country-maps/ukr_admin0.geo.json'); + expect(out.geoJsonUrl).toBe( + '/static/assets/country-maps/ukr_admin0.geo.json', + ); }); test('Admin 1 + country → per-country file URL', () => { @@ -85,7 +84,9 @@ test('Composite overrides admin_level + country', () => { test('Worldview defaults to ukr when not specified', () => { const out = transformProps(buildChartProps({ admin_level: 0 })); - expect(out.geoJsonUrl).toBe('/static/assets/country-maps/ukr_admin0.geo.json'); + expect(out.geoJsonUrl).toBe( + '/static/assets/country-maps/ukr_admin0.geo.json', + ); }); test('Different worldview reflected in URL', () => { diff --git a/superset/static/assets/country-maps/manifest.json b/superset/static/assets/country-maps/manifest.json index e3cd9e52895..43b660cd88c 100644 --- a/superset/static/assets/country-maps/manifest.json +++ b/superset/static/assets/country-maps/manifest.json @@ -259,4 +259,4 @@ "size_bytes": 322058 } ] -} \ No newline at end of file +}