Skip to content

Fix "unevaluted" typos in "unevaluatedItems" suite #435

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions tests/draft2019-09/unevaluatedItems.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@
},
"tests": [
{
"description": "with no unevaluted items",
"description": "with no unevaluated items",
"data": ["foo"],
"valid": true
},
{
"description": "with unevaluted items",
"description": "with unevaluated items",
"data": ["foo", "bar"],
"valid": false
}
Expand Down Expand Up @@ -135,12 +135,12 @@
},
"tests": [
{
"description": "with no unevaluted items",
"description": "with no unevaluated items",
"data": ["foo", 42],
"valid": true
},
{
"description": "with unevaluted items",
"description": "with unevaluated items",
"data": ["foo", 42, true],
"valid": false
}
Expand Down Expand Up @@ -228,22 +228,22 @@
},
"tests": [
{
"description": "when one schema matches and has no unevaluted items",
"description": "when one schema matches and has no unevaluated items",
"data": ["foo", "bar"],
"valid": true
},
{
"description": "when one schema matches and has unevaluted items",
"description": "when one schema matches and has unevaluated items",
"data": ["foo", "bar", 42],
"valid": false
},
{
"description": "when two schemas match and has no unevaluted items",
"description": "when two schemas match and has no unevaluated items",
"data": ["foo", "bar", "baz"],
"valid": true
},
{
"description": "when two schemas match and has unevaluted items",
"description": "when two schemas match and has unevaluated items",
"data": ["foo", "bar", "baz", 42],
"valid": false
}
Expand Down Expand Up @@ -274,12 +274,12 @@
},
"tests": [
{
"description": "with no unevaluted items",
"description": "with no unevaluated items",
"data": ["foo", "bar"],
"valid": true
},
{
"description": "with unevaluted items",
"description": "with unevaluated items",
"data": ["foo", "bar", 42],
"valid": false
}
Expand All @@ -304,7 +304,7 @@
},
"tests": [
{
"description": "with unevaluted items",
"description": "with unevaluated items",
"data": ["foo", "bar"],
"valid": false
}
Expand Down Expand Up @@ -342,22 +342,22 @@
},
"tests": [
{
"description": "when if matches and it has no unevaluted items",
"description": "when if matches and it has no unevaluated items",
"data": ["foo", "bar", "then"],
"valid": true
},
{
"description": "when if matches and it has unevaluted items",
"description": "when if matches and it has unevaluated items",
"data": ["foo", "bar", "then", "else"],
"valid": false
},
{
"description": "when if doesn't match and it has no unevaluted items",
"description": "when if doesn't match and it has no unevaluated items",
"data": ["foo", 42, 42, "else"],
"valid": true
},
{
"description": "when if doesn't match and it has unevaluted items",
"description": "when if doesn't match and it has unevaluated items",
"data": ["foo", 42, 42, "else", 42],
"valid": false
}
Expand Down