Skip to content

Commit 7b3929a

Browse files
committed
fix coding style in changes
1 parent c437006 commit 7b3929a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/jasmine/tests/choropleth_test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,11 @@ describe('Test choropleth hover:', function() {
192192
.then(function() {
193193
if(hasCssTransform) {
194194
transformPlot(gd, 'translate3d(10px, 10px, 0) scale(1)');
195-
assertHoverLabel(pos[0] + 10, pos[1] + 10)
195+
assertHoverLabel(pos[0] + 10, pos[1] + 10);
196196
transformPlot(gd, 'translate(-25%, -25%) scale(0.5)');
197-
assertHoverLabel(0.5 * pos[0], 0.5 * pos[1])
197+
assertHoverLabel(0.5 * pos[0], 0.5 * pos[1]);
198198
} else {
199-
assertHoverLabel(pos[0], pos[1])
199+
assertHoverLabel(pos[0], pos[1]);
200200
}
201201
});
202202
}

0 commit comments

Comments
 (0)