From: Uemit Seren Date: Fri, 5 Apr 2013 12:24:25 +0000 (+0200) Subject: Fixed minor issues X-Git-Tag: v1.0.0~42^2 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=54119c343a07e6851bc5c8130e61acfde7fcba79;p=dygraphs.git Fixed minor issues --- diff --git a/auto_tests/tests/callback.js b/auto_tests/tests/callback.js index 9db628a..a8d5e7e 100644 --- a/auto_tests/tests/callback.js +++ b/auto_tests/tests/callback.js @@ -638,8 +638,7 @@ CallbackTestCase.prototype.testDrawPointCallback_idx = function() { // Test that correct idx for isolated points are passed to the callback. g = new Dygraph(graph, testdata, graphOpts); assertEquals(2, indices.length); - assertEquals(3, indices[0]); - assertEquals(5, indices[1]); + assertEquals([3, 5],indices); // Test that correct indices for isolated points + gap points are passed to the callback when // drawGapEdgePoints is set. This should add one point at the right @@ -648,9 +647,7 @@ CallbackTestCase.prototype.testDrawPointCallback_idx = function() { graphOpts.drawGapEdgePoints = true; g = new Dygraph(graph, testdata, graphOpts); assertEquals(3, indices.length); - assertEquals(1, indices[0]); - assertEquals(3, indices[1]); - assertEquals(5, indices[2]); + assertEquals([1, 3, 5],indices); //Test that correct indices are passed to the callback when zoomed in. @@ -660,15 +657,12 @@ CallbackTestCase.prototype.testDrawPointCallback_idx = function() { testdata = [[10, 2], [11, 3], [12, 4], [13, 2], [14, 5], [15, 3]]; g = new Dygraph(graph, testdata, graphOpts); assertEquals(3, indices.length); - assertEquals(2, indices[0]); - assertEquals(3, indices[1]); - assertEquals(4, indices[2]); + assertEquals([2, 3, 4],indices); }; /** * Test that the correct idx is returned for the point in the onHiglightCallback. - * - */ + */ CallbackTestCase.prototype.testDrawHighlightPointCallback_idx = function() { var idxToCheck = null; @@ -691,4 +685,4 @@ CallbackTestCase.prototype.testDrawHighlightPointCallback_idx = function() { assertEquals(0,idxToCheck); DygraphOps.dispatchMouseMove(g, 6, 3); assertEquals(5,idxToCheck); -}; +}; \ No newline at end of file