Skip to content

Commit 1a79b82

Browse files
committed
update baseline
1 parent cd2ac06 commit 1a79b82

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed
6.64 KB
Loading
252 KB
Loading
19.1 KB
Loading

test/image/make_baseline.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,11 @@
9191

9292
# unable to generate baselines for the following mocks
9393
blacklist = [
94-
'gl2d_heatmapgl_discrete',
9594
'mapbox_stamen-style',
9695
'mapbox_layers',
9796
'mapbox_custom-style',
9897
'plot_types',
9998
'trace_metatext',
100-
'gl2d_heatmapgl', # Transform failed with error code 525: gl-fbo: Parameters are too large for FBO
10199
'zz-gl3d_surface_small_timerange',
102100
]
103101
allNames = [a for a in allNames if a not in blacklist]

test/jasmine/tests/mapbox_test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -519,16 +519,16 @@ describe('mapbox plots', function() {
519519
// 'Unable to perform style diff: Unimplemented: setSprite.. Rebuilding the style from scratch.'
520520
// https://github.com/mapbox/mapbox-gl-js/issues/6933
521521

522-
assertLayout('Mapbox Dark');
522+
assertLayout('Dark Matter without labels');
523523

524524
Plotly.relayout(gd, 'mapbox.style', 'carto-positron')
525525
.then(function() {
526-
assertLayout('Mapbox Light');
526+
assertLayout('Positron');
527527

528528
return Plotly.relayout(gd, 'mapbox.style', 'carto-darkmatter');
529529
})
530530
.then(function() {
531-
assertLayout('Mapbox Dark');
531+
assertLayout('Dark Matter');
532532
})
533533
.then(done, done.fail);
534534
}, LONG_TIMEOUT_INTERVAL);
@@ -1223,7 +1223,7 @@ describe('mapbox plots', function() {
12231223
.then(function() {
12241224
var s = d3SelectAll('.maplibregl-ctrl-attrib');
12251225
expect(s.size()).toBe(1);
1226-
expect(s.text()).toEqual(Carto © OpenStreetMap contributors');
1226+
expect(s.text()).toEqual(CARTO, © OpenStreetMap contributors');
12271227
assertLinks(s, [
12281228
'https://carto.com/',
12291229
'https://www.openstreetmap.org/copyright'
@@ -1284,7 +1284,7 @@ describe('mapbox plots', function() {
12841284
.then(function() {
12851285
var s = d3SelectAll('.maplibregl-ctrl-attrib');
12861286
expect(s.size()).toBe(1);
1287-
expect(s.text()).toEqual(MapLibre © OpenStreetMap Improve this map');
1287+
expect(s.text()).toEqual(CARTO, © OpenStreetMap contributors');
12881288
assertLinks(s, [
12891289
'https://www.openstreetmap.org/about/',
12901290

0 commit comments

Comments
 (0)