diff --git a/test/schemas/v0/tests.schema.json b/test/schemas/v0/tests.schema.json index b6d5ac1cb5..96aaf2a975 100644 --- a/test/schemas/v0/tests.schema.json +++ b/test/schemas/v0/tests.schema.json @@ -237,7 +237,7 @@ "items": { "oneOf": [ { - "description": "Message literal part.", + "description": "Message text part.", "type": "object", "additionalProperties": false, "required": [ @@ -246,7 +246,7 @@ ], "properties": { "type": { - "const": "literal" + "const": "text" }, "value": { "type": "string" diff --git a/test/tests/syntax.json b/test/tests/syntax.json index b334c8f734..4c825f4189 100644 --- a/test/tests/syntax.json +++ b/test/tests/syntax.json @@ -644,7 +644,7 @@ "name": "tag" }, { - "type": "literal", + "type": "text", "value": "content" } ] @@ -659,7 +659,7 @@ "name": "ns:tag" }, { - "type": "literal", + "type": "text", "value": "content" }, { @@ -679,7 +679,7 @@ "name": "tag" }, { - "type": "literal", + "type": "text", "value": "content" } ] diff --git a/test/tests/u-options.json b/test/tests/u-options.json index ee42765886..6ae9264f71 100644 --- a/test/tests/u-options.json +++ b/test/tests/u-options.json @@ -17,10 +17,7 @@ "id": "x", "name": "tag" }, - { - "type": "literal", - "value": "content" - }, + { "type": "text", "value": "content" }, { "type": "markup", "kind": "close", @@ -39,10 +36,7 @@ "kind": "open", "name": "tag" }, - { - "type": "literal", - "value": "content" - }, + { "type": "text", "value": "content" }, { "type": "markup", "kind": "close", @@ -58,10 +52,7 @@ "src": "hello {world :string u:dir=ltr u:id=foo}", "exp": "hello \u2066world\u2069", "expParts": [ - { - "type": "literal", - "value": "hello " - }, + { "type": "text", "value": "hello " }, { "type": "bidiIsolation", "value": "\u2066" }, { "type": "string", @@ -78,7 +69,7 @@ "src": "hello {world :string u:dir=rtl}", "exp": "hello \u2067world\u2069", "expParts": [ - { "type": "literal", "value": "hello " }, + { "type": "text", "value": "hello " }, { "type": "bidiIsolation", "value": "\u2067" }, { "type": "string", @@ -94,7 +85,7 @@ "src": "hello {world :string u:dir=auto}", "exp": "hello \u2068world\u2069", "expParts": [ - { "type": "literal", "value": "hello " }, + { "type": "text", "value": "hello " }, { "type": "bidiIsolation", "value": "\u2068" }, { "type": "string", @@ -109,10 +100,7 @@ "src": ".local $world = {world :string u:dir=ltr u:id=foo} {{hello {$world}}}", "exp": "hello \u2066world\u2069", "expParts": [ - { - "type": "literal", - "value": "hello " - }, + { "type": "text", "value": "hello " }, { "type": "bidiIsolation", "value": "\u2066" }, { "type": "string",