Fix outdated require()

This fixes an outdated require() call still pointing to 'node-subunit'
rather than 'subunit-js'.
This commit is contained in:
Tim Buckley 2016-06-10 09:11:17 -06:00
parent 45c359feea
commit 78615990c7
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
'use strict'; 'use strict';
var fs = require('fs'); var fs = require('fs');
var subunit = require('node-subunit'); var subunit = require('subunit-js');
function SubunitReporter(helper, logger, config) { function SubunitReporter(helper, logger, config) {
config = config || {}; config = config || {};