From 9372ea431e477787e0903cd1d579bc1f303cf0a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20T=C3=A9treault-Pinard?= Date: Tue, 11 Sep 2018 12:16:38 -0400 Subject: [PATCH] there are now 4 `` nodes in polar subplots --- test/jasmine/tests/plot_api_test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/jasmine/tests/plot_api_test.js b/test/jasmine/tests/plot_api_test.js index eb1e735387c..9b2469b630a 100644 --- a/test/jasmine/tests/plot_api_test.js +++ b/test/jasmine/tests/plot_api_test.js @@ -2962,7 +2962,7 @@ describe('Test plot api', function() { Plotly.newPlot(gd, data, layout) .then(countPlots) .then(function() { - expect(d3.select(gd).selectAll('.drag').size()).toBe(3); + expect(d3.select(gd).selectAll('.drag').size()).toBe(4); return Plotly.react(gd, data, layout, {staticPlot: true}); }) @@ -2972,7 +2972,7 @@ describe('Test plot api', function() { return Plotly.react(gd, data, layout, {}); }) .then(function() { - expect(d3.select(gd).selectAll('.drag').size()).toBe(3); + expect(d3.select(gd).selectAll('.drag').size()).toBe(4); }) .catch(failTest) .then(done);