From d85df1815cd02b0d0776a5cd6cd669fcd549cab1 Mon Sep 17 00:00:00 2001 From: Peter Snyder Date: Fri, 3 Nov 2017 06:54:32 +0000 Subject: [PATCH] formatting / linting-error corrections to new unit tests --- test/unit/rule-matching.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/rule-matching.js b/test/unit/rule-matching.js index e025d51..0b17ed5 100644 --- a/test/unit/rule-matching.js +++ b/test/unit/rule-matching.js @@ -13,8 +13,8 @@ const addonLibPath = path.join(__dirname, "..", "..", "add-on", "lib"); // These will end up not returing anything, but will instead populate // window.WEB_API_MANAGER -const webAPIInitStub = require(path.join(addonLibPath, "init.js")); -const domainMatcherStub = require(path.join(addonLibPath, "domainmatcher.js")); +require(path.join(addonLibPath, "init.js")); +require(path.join(addonLibPath, "domainmatcher.js")); const domainMatcherLib = window.WEB_API_MANAGER.domainMatcherLib; describe("Host Pattern Matching", function () { @@ -72,4 +72,4 @@ describe("Host Pattern Matching", function () { done(); }); }); -}); \ No newline at end of file +});