From 76eb4d9063258ca5948b6e0181e96bb9d305f68c Mon Sep 17 00:00:00 2001 From: Caleb Hearon Date: Fri, 15 Jul 2016 07:40:41 -0400 Subject: [PATCH] fix lineDash browser tests never finishing --- test/public/tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/public/tests.js b/test/public/tests.js index 7b22c5e3e..f0b9f0d97 100644 --- a/test/public/tests.js +++ b/test/public/tests.js @@ -1925,7 +1925,7 @@ tests['putImageData() png data 3'] = function(ctx, done){ img.src = 'state.png'; }; -tests['setLineDash'] = function(ctx, done){ +tests['setLineDash'] = function(ctx){ ctx.setLineDash([10, 5, 25, 15]); ctx.lineWidth = 17; @@ -1956,7 +1956,7 @@ tests['setLineDash'] = function(ctx, done){ })(), "orange"); }; -tests['lineDashOffset'] = function(ctx, done){ +tests['lineDashOffset'] = function(ctx){ ctx.setLineDash([10, 5, 25, 15]); ctx.lineWidth = 4;