From c259963542e152a39adf873ac3c1a92a2990d630 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Tue, 15 Aug 2017 17:32:21 +0000 Subject: [PATCH] Fixed string escape test configs --- test/tests/operations/StrUtils.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/tests/operations/StrUtils.js b/test/tests/operations/StrUtils.js index 159916c7..6e66b266 100644 --- a/test/tests/operations/StrUtils.js +++ b/test/tests/operations/StrUtils.js @@ -238,7 +238,7 @@ TestRegister.addTests([ expectedOutput: "Hello \\\"World\\\"! Escape \\'these\\' quotes.", recipeConfig: [ { - "op": "Escape String", + "op": "Escape string", "args": [] } ], @@ -249,7 +249,7 @@ TestRegister.addTests([ expectedOutput: "Fizz & buzz\\n\\ttabbed newline\\rcarriage returned line\\nbackspace character: \\\"\\b\\\" form feed character: \\\"\\f\\\"", recipeConfig: [ { - "op": "Escape String", + "op": "Escape string", "args": [] } ], @@ -260,7 +260,7 @@ TestRegister.addTests([ expectedOutput: "Hello \"World\"! Escape 'these' quotes.", recipeConfig: [ { - "op": "Unescape String", + "op": "Unescape string", "args": [] } ], @@ -271,7 +271,7 @@ TestRegister.addTests([ expectedOutput: "Fizz & buzz\n\ttabbed newline\rcarriage returned line\nbackspace character: \"\" form feed character: \" \"", recipeConfig: [ { - "op": "Unescape String", + "op": "Unescape string", "args": [] } ],