From e403adb9a12243186d33bdea8a38d371e3aa0923 Mon Sep 17 00:00:00 2001 From: d98762625 Date: Sun, 25 Mar 2018 17:51:36 +0100 Subject: [PATCH] fix more linting errors --- test/index.js | 2 +- test/tests/operations/SetOperations.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/index.js b/test/index.js index 4603db96..6a3f8330 100644 --- a/test/index.js +++ b/test/index.js @@ -33,7 +33,7 @@ import "./tests/operations/OTP.js"; import "./tests/operations/Regex.js"; import "./tests/operations/StrUtils.js"; import "./tests/operations/SeqUtils.js"; -import "./tests/operations/SetOperations.js" +import "./tests/operations/SetOperations.js"; let allTestsPassing = true; diff --git a/test/tests/operations/SetOperations.js b/test/tests/operations/SetOperations.js index af03c95d..35e46f9e 100644 --- a/test/tests/operations/SetOperations.js +++ b/test/tests/operations/SetOperations.js @@ -1,8 +1,8 @@ /** * Set Operations tests. * - * @author d98762625 - * + * @author d98762625 + * * @copyright Crown Copyright 2017 * @license Apache-2.0 */ @@ -99,12 +99,12 @@ TestRegister.addTests([ }, { name: "Set Operations: Intersection: sample delimiter", - input: "1-2-3-4-5\/3-4-5-6-7", + input: "1-2-3-4-5z3-4-5-6-7", expectedOutput: "3-4-5", recipeConfig: [ { op: "Set Operations", - args: ["\/", "-", "Intersection"], + args: ["z", "-", "Intersection"], }, ], },