From 89327d50b2e3b92cd5c614c8c041097bcdc0d534 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 10 Jun 2016 17:39:58 -0400 Subject: [PATCH] oops --- test/function/allow-reserved/_config.js | 1 - test/test.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/function/allow-reserved/_config.js b/test/function/allow-reserved/_config.js index 9fdc00e..63f2a11 100644 --- a/test/function/allow-reserved/_config.js +++ b/test/function/allow-reserved/_config.js @@ -1,5 +1,4 @@ module.exports = { - solo: true, description: 'allow reserved identifiers via custom acorn options', options: { acorn: { diff --git a/test/test.js b/test/test.js index 1df5666..639104e 100644 --- a/test/test.js +++ b/test/test.js @@ -76,7 +76,7 @@ describe( 'rollup', function () { return rollup.rollup({ entry: 'x', plUgins: [] }).then( function () { throw new Error( 'Missing expected error' ); }, function ( err ) { - assert.equal( err.message, 'Unexpected key \'plUgins\' found, expected one of: banner, cache, dest, entry, exports, external, footer, format, globals, indent, intro, moduleId, moduleName, noConflict, onwarn, outro, plugins, preferConst, sourceMap, targets, treeshake, useStrict' ); + assert.equal( err.message, 'Unexpected key \'plUgins\' found, expected one of: acorn, banner, cache, dest, entry, exports, external, footer, format, globals, indent, intro, moduleId, moduleName, noConflict, onwarn, outro, plugins, preferConst, sourceMap, targets, treeshake, useStrict' ); }); }); });