From d4cddccad228502ef3c2c7096c36cbb323760a7d Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Thu, 26 Sep 2013 14:11:14 -0400 Subject: [PATCH] minor cleanup --- auto_tests/tests/axis_labels.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/auto_tests/tests/axis_labels.js b/auto_tests/tests/axis_labels.js index 0c6414c..57b7efd 100644 --- a/auto_tests/tests/axis_labels.js +++ b/auto_tests/tests/axis_labels.js @@ -741,7 +741,7 @@ AxisLabelsTestCase.prototype.testLabelsKMBPerAxis = function() { x: { labelsKMB: true } }, series: { - b: { axis: "y2" }, + b: { axis: "y2" } } }); @@ -769,7 +769,7 @@ AxisLabelsTestCase.prototype.testLabelsKMBG2IPerAxis = function() { x: { labelsKMG2: true } }, series: { - b: { axis: "y2" }, + b: { axis: "y2" } } }); @@ -799,7 +799,7 @@ AxisLabelsTestCase.prototype.testSigFigsPerAxis = function() { x: { sigFigs: 8 } }, series: { - b: { axis: "y2" }, + b: { axis: "y2" } } }); @@ -823,7 +823,7 @@ AxisLabelsTestCase.prototype.testDigitsAfterDecimalPerAxis = function() { "0.009,0.004,0.005\n", { digitsAfterDecimal: 1, series: { - b: { axis: "y2" }, + b: { axis: "y2" } } }); @@ -872,10 +872,10 @@ AxisLabelsTestCase.prototype.testMaxNumberWidthPerAxis = function() { "12404,12604,12801\n", { maxNumberWidth: 1, series: { - b: { axis: "y2" }, + b: { axis: "y2" } } }); -fail = function(x) {console.log(x)}; + g.updateOptions({ axes: { y: { maxNumberWidth: 4 }}}); assertEquals(["1.26e+4","1.26e+4","1.26e+4","1.26e+4","1.26e+4","1.26e+4","1.26e+4"] , Util.getYLabels(1)); g.updateOptions({ axes: { y: { maxNumberWidth: 5 }}}); -- 2.7.4