X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fsimple_drawing.js;h=b2ddccf989939280ca51d4bba075dedc0719d022;hb=72223c02efb7e8629bebb20e1be5ce5e880e70b7;hp=3955a31f3edf129c9dc7747359c2fdbacb5f271b;hpb=c20eabd3c06287d70316ab453428bb566903d651;p=dygraphs.git diff --git a/auto_tests/tests/simple_drawing.js b/auto_tests/tests/simple_drawing.js index 3955a31..b2ddccf 100644 --- a/auto_tests/tests/simple_drawing.js +++ b/auto_tests/tests/simple_drawing.js @@ -90,15 +90,3 @@ SimpleDrawingTestCase.prototype.testDrawSimpleDash = function() { assertEquals(29, CanvasAssertions.numLinesDrawn(htx, "#ff0000")); CanvasAssertions.assertBalancedSaveRestore(htx); }; - -SimpleDrawingTestCase.prototype.testSeparatedPointsDontDraw = function() { - var graph = document.getElementById("graph"); - var g = new Dygraph( - graph, - [[1, 10, 11], [2, 11, null], [3, 12, 13]], - { colors: ['red', 'blue']}); - var htx = g.hidden_ctx_; - assertEquals(2, CanvasAssertions.numLinesDrawn(htx, '#ff0000')); - assertEquals(0, CanvasAssertions.numLinesDrawn(htx, '#0000ff')); -} -