Browse Source

Fixed string escape test configs

n1474335 8 years ago
parent
commit
c259963542
1 changed files with 4 additions and 4 deletions
  1. 4 4
      test/tests/operations/StrUtils.js

+ 4 - 4
test/tests/operations/StrUtils.js

@@ -238,7 +238,7 @@ TestRegister.addTests([
         expectedOutput: "Hello \\\"World\\\"! Escape \\'these\\' quotes.",
         expectedOutput: "Hello \\\"World\\\"! Escape \\'these\\' quotes.",
         recipeConfig: [
         recipeConfig: [
             {
             {
-                "op": "Escape String",
+                "op": "Escape string",
                 "args": []
                 "args": []
             }
             }
         ],
         ],
@@ -249,7 +249,7 @@ TestRegister.addTests([
         expectedOutput: "Fizz & buzz\\n\\ttabbed newline\\rcarriage returned line\\nbackspace character: \\\"\\b\\\" form feed character: \\\"\\f\\\"",
         expectedOutput: "Fizz & buzz\\n\\ttabbed newline\\rcarriage returned line\\nbackspace character: \\\"\\b\\\" form feed character: \\\"\\f\\\"",
         recipeConfig: [
         recipeConfig: [
             {
             {
-                "op": "Escape String",
+                "op": "Escape string",
                 "args": []
                 "args": []
             }
             }
         ],
         ],
@@ -260,7 +260,7 @@ TestRegister.addTests([
         expectedOutput: "Hello \"World\"! Escape 'these' quotes.",
         expectedOutput: "Hello \"World\"! Escape 'these' quotes.",
         recipeConfig: [
         recipeConfig: [
             {
             {
-                "op": "Unescape String",
+                "op": "Unescape string",
                 "args": []
                 "args": []
             }
             }
         ],
         ],
@@ -271,7 +271,7 @@ TestRegister.addTests([
         expectedOutput: "Fizz & buzz\n\ttabbed newline\rcarriage returned line\nbackspace character: \"\" form feed character: \"\"",
         expectedOutput: "Fizz & buzz\n\ttabbed newline\rcarriage returned line\nbackspace character: \"\" form feed character: \"\"",
         recipeConfig: [
         recipeConfig: [
             {
             {
-                "op": "Unescape String",
+                "op": "Unescape string",
                 "args": []
                 "args": []
             }
             }
         ],
         ],