summaryrefslogtreecommitdiff
path: root/json/tests/draft6/additionalItems.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft6/additionalItems.json')
-rw-r--r--json/tests/draft6/additionalItems.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/json/tests/draft6/additionalItems.json b/json/tests/draft6/additionalItems.json
index 454142b..deb44fd 100644
--- a/json/tests/draft6/additionalItems.json
+++ b/json/tests/draft6/additionalItems.json
@@ -95,7 +95,7 @@
]
},
{
- "description": "additionalItems should not look in applicators, valid case",
+ "description": "additionalItems does not look in applicators, valid case",
"schema": {
"allOf": [
{ "items": [ { "type": "integer" } ] }
@@ -111,7 +111,7 @@
]
},
{
- "description": "additionalItems should not look in applicators, invalid case",
+ "description": "additionalItems does not look in applicators, invalid case",
"schema": {
"allOf": [
{ "items": [ { "type": "integer" }, { "type": "string" } ] }
@@ -147,7 +147,7 @@
]
},
{
- "description": "additionalItems should properly handle null data",
+ "description": "additionalItems with null instance elements",
"schema": {
"additionalItems": {
"type": "null"
@@ -155,7 +155,7 @@
},
"tests": [
{
- "description": "null items allowed",
+ "description": "allows null elements",
"data": [ null ],
"valid": true
}