Skip to content

Commit

Permalink
Fix test message/remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
pbeshai committed Oct 19, 2016
1 parent 8034c94 commit ef59c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lineChunked-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ tape('lineChunked() with null transition to null', function (t) {
const data = [[0, null]];

g.datum(data).call(chunked).transition().call(chunked);
console.log(g.node().innerHTML);
// console.log(g.node().innerHTML);

t.equal(lengthOfPath(g.select(definedLineClass)), 0);
t.equal(lengthOfPath(g.select(undefinedLineClass)), 0);
Expand Down Expand Up @@ -537,7 +537,7 @@ tape('lineChunked() puts circles above paths when using multiple chunks', functi
}
});

t.equal(lastPathIndex < firstCircleIndex, true, `last path was at ${lastPathIndex} > first circle at ${firstCircleIndex}`);
t.equal(lastPathIndex < firstCircleIndex, true, `last path was at ${lastPathIndex}, first circle was at ${firstCircleIndex}`);

t.end();
});
Expand Down

0 comments on commit ef59c19

Please sign in to comment.