From fc418f8d68ef8a7f9b96487ee243688a79b87fb7 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Fri, 20 Apr 2018 22:44:23 -0700 Subject: [PATCH] remove extra call to done() in test/unit/runnable.spec.js Signed-off-by: Christopher Hiller --- test/unit/runnable.spec.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/unit/runnable.spec.js b/test/unit/runnable.spec.js index 1c54548a55..676439f97d 100644 --- a/test/unit/runnable.spec.js +++ b/test/unit/runnable.spec.js @@ -335,7 +335,6 @@ describe('Runnable(title, fn)', function () { done(new Error('failed to throw')); } catch (e) { assert(e.message === 'fail'); - done(); } done(); });