From 78615990c7dd9bdcd9cec44484af328c1e466643 Mon Sep 17 00:00:00 2001 From: Tim Buckley Date: Fri, 10 Jun 2016 09:11:17 -0600 Subject: [PATCH] Fix outdated require() This fixes an outdated require() call still pointing to 'node-subunit' rather than 'subunit-js'. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7923861..8f43fa4 100644 --- a/index.js +++ b/index.js @@ -14,7 +14,7 @@ 'use strict'; var fs = require('fs'); -var subunit = require('node-subunit'); +var subunit = require('subunit-js'); function SubunitReporter(helper, logger, config) { config = config || {};