Skip to content

Commit ee51591

Browse files
committed
Merge remote-tracking branch 'origin/master' into dependabot/npm_and_yarn/npm_and_yarn-e357b39749
2 parents 9f90d40 + 50c19fb commit ee51591

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
install_firefox: false
4545
install_geckodriver: false
4646
install_chrome: true
47-
chrome_version: "135.0.7049.95"
47+
chrome_version: "136.0.7103.113"
4848
- attach_workspace:
4949
at: ~/
5050
- run:
@@ -83,7 +83,7 @@ jobs:
8383
install_firefox: false
8484
install_geckodriver: false
8585
install_chrome: true
86-
chrome_version: "135.0.7049.95"
86+
chrome_version: "136.0.7103.113"
8787
- attach_workspace:
8888
at: ~/
8989
- run:
@@ -105,7 +105,7 @@ jobs:
105105
install_firefox: false
106106
install_geckodriver: false
107107
install_chrome: true
108-
chrome_version: "135.0.7049.95"
108+
chrome_version: "136.0.7103.113"
109109
- attach_workspace:
110110
at: ~/
111111
- run:
@@ -127,7 +127,7 @@ jobs:
127127
install_firefox: false
128128
install_geckodriver: false
129129
install_chrome: true
130-
chrome_version: "135.0.7049.95"
130+
chrome_version: "136.0.7103.113"
131131
- attach_workspace:
132132
at: ~/
133133
- run:
@@ -169,7 +169,7 @@ jobs:
169169
install_firefox: false
170170
install_geckodriver: false
171171
install_chrome: true
172-
chrome_version: "135.0.7049.95"
172+
chrome_version: "136.0.7103.113"
173173
- attach_workspace:
174174
at: ~/
175175
- run:
@@ -190,7 +190,7 @@ jobs:
190190
install_firefox: false
191191
install_geckodriver: false
192192
install_chrome: true
193-
chrome_version: "135.0.7049.95"
193+
chrome_version: "136.0.7103.113"
194194
- attach_workspace:
195195
at: ~/
196196
- run:

test/image/compare_pixels_test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ var blacklist = [
6767
'map_scattercluster',
6868
'map_fonts-supported-open-sans',
6969
'map_fonts-supported-open-sans-weight',
70+
'map_layers',
7071
];
7172

7273
if(virtualWebgl) {

test/image/make_baseline.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
'map_scattercluster',
7272
'map_fonts-supported-open-sans',
7373
'map_fonts-supported-open-sans-weight',
74+
'map_layers',
7475
]
7576
allNames = [a for a in allNames if a not in blacklist]
7677

test/jasmine/assets/custom_assertions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ exports.assertPlotSize = function(opts, msg) {
295295
var widthLessThan = opts.widthLessThan;
296296
var heightLessThan = opts.heightLessThan;
297297

298-
var plotBB = d3Select('.plotclip > rect').node().getBoundingClientRect();
298+
var plotBB = d3Select('.plotclip > rect').node().getBBox();
299299
var actualWidth = plotBB.width;
300300
var actualHeight = plotBB.height;
301301

test/jasmine/tests/geo_test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2588,8 +2588,8 @@ describe('Test geo zoom/pan/drag interactions:', function() {
25882588
var center = geoLayout.center;
25892589
var scale = geoLayout.projection.scale;
25902590

2591-
expect(center.lon).toBeCloseTo(attr[0][0], 0.5, msg + 'center.lon');
2592-
expect(center.lat).toBeCloseTo(attr[0][1], 0.5, msg + 'center.lat');
2591+
expect(center.lon).toBeCloseTo(attr[0][0], 0, msg + 'center.lon');
2592+
expect(center.lat).toBeCloseTo(attr[0][1], 0, msg + 'center.lat');
25932593
expect(scale).toBeCloseTo(attr[1], 1, msg + 'zoom');
25942594

25952595
// albersUsa projection does not have a center() method
@@ -2608,15 +2608,15 @@ describe('Test geo zoom/pan/drag interactions:', function() {
26082608
_assert('base', [
26092609
[-96.6, 38.7], 1,
26102610
], [
2611-
[416, 309], 738.5
2611+
[410, 329], 738.5
26122612
], undefined);
26132613
return drag({path: [[250, 250], [200, 200]], noCover: true});
26142614
})
26152615
.then(function() {
26162616
_assert('after NW-SE drag', [
26172617
[-91.8, 34.8], 1,
26182618
], [
2619-
[366, 259], 738.5
2619+
[366, 279], 738.5
26202620
], [
26212621
'geo.center.lon', 'geo.center.lon'
26222622
]);
@@ -2626,7 +2626,7 @@ describe('Test geo zoom/pan/drag interactions:', function() {
26262626
_assert('after scroll', [
26272627
[-94.5, 35.0], 1.3
26282628
], [
2629-
[387.1, 245.9], 974.4
2629+
[380, 273], 974.4
26302630
], [
26312631
'geo.center.lon', 'geo.center.lon', 'geo.projection.scale'
26322632
]);
@@ -2637,7 +2637,7 @@ describe('Test geo zoom/pan/drag interactions:', function() {
26372637
[-94.5, 35.0], 1.3
26382638
], [
26392639
// new center values are reflected in translate()
2640-
[387.1, 245.9], 974.4
2640+
[380, 273], 974.4
26412641
], [
26422642
'geo.showlakes'
26432643
]);
@@ -2647,7 +2647,7 @@ describe('Test geo zoom/pan/drag interactions:', function() {
26472647
_assert('after double click', [
26482648
[-96.6, 38.7], 1,
26492649
], [
2650-
[416, 309], 738.5
2650+
[416, 329], 738.5
26512651
], 'dblclick');
26522652
})
26532653
.then(done, done.fail);

test/jasmine/tests/volume_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ describe('Test volume', function() {
336336
}
337337

338338
function _hover4() {
339-
mouseEvent('mouseover', 150, 300);
339+
mouseEvent('mouseover', 140, 300);
340340
return delay(20)();
341341
}
342342

0 commit comments

Comments
 (0)