fix generate-combined
[dygraphs.git] / auto_tests / tests / simple_drawing.js
index 3955a31..b2ddccf 100644 (file)
@@ -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'));
-}
-