common/exercises/forth/canonical-data.json in trackler-2.1.0.27 vs common/exercises/forth/canonical-data.json in trackler-2.1.0.28

- old
+ new

@@ -1,8 +1,8 @@ { "exercise": "forth", - "version": "1.0.0", + "version": "1.1.0", "comments": [ "The cases are split into multiple sections, all with the same structure.", "In all cases, the `expected` key is the resulting stack", "after executing the Forth program contained in the `input` key." ], @@ -19,15 +19,9 @@ { "description": "numbers just get pushed onto the stack", "property": "evaluate", "input": ["1 2 3 4 5"], "expected": [1, 2, 3, 4, 5] - }, - { - "description": "all non-word characters are separators", - "property": "evaluate", - "input": ["1\u00002\u00133\n4\r5 6\t7"], - "expected": [1, 2, 3, 4, 5, 6, 7] } ] }, { "description": "addition",