From 3abe99078e41a64889c3b6c0dd1fdbef436a21be Mon Sep 17 00:00:00 2001 From: GCHQ 77703 Date: Mon, 27 Aug 2018 16:03:15 +0100 Subject: [PATCH] Fix linting --- test/tests/operations/LengthValueDecoder.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/tests/operations/LengthValueDecoder.mjs b/test/tests/operations/LengthValueDecoder.mjs index 250002c4..90923c23 100644 --- a/test/tests/operations/LengthValueDecoder.mjs +++ b/test/tests/operations/LengthValueDecoder.mjs @@ -11,8 +11,8 @@ import TestRegister from "../../TestRegister"; TestRegister.addTests([ { name: "KeyValue", - input: [5,72,111,117,115,101,4,114,111,111,109,4,100,111,111,114], - expectedOutput: [{"key":[25],"length":5,"value":[72,111,117,115,101]},{"key":[73],"length":4,"value":[114,111,111,109]},{"key":[41],"length":4,"value":[100,111,111,114]}], + input: [5, 72, 111, 117, 115, 101, 4, 114, 111, 111, 109, 4, 100, 111, 111, 114], + expectedOutput: [{"key": [25], "length": 5, "value": [72, 111, 117, 115, 101]}, {"key": [73], "length": 4, "value": [114, 111, 111, 109]}, {"key": [41], "length": 4, "value": [100, 111, 111, 114]}], recipeConfig: [ { "op": "Length Value Decoder", @@ -20,4 +20,4 @@ TestRegister.addTests([ } ] }, -]) \ No newline at end of file +]);