test(compiler-cli): fix TEST_CASES.json schema (#39939)

The schema accidentally included the `expectedErrors` and `extraCheck`
properties below the `files` property instead of below the `expectations`
property.

PR Close #39939
This commit is contained in:
Pete Bacon Darwin 2020-11-26 12:39:43 +00:00 committed by Misko Hevery
parent ef892743ec
commit 2afa3801bc

View File

@ -73,6 +73,7 @@
"title": "A path (relative to the test case) where an file containing expected output can be found. (The generated path is inferred from this.)" "title": "A path (relative to the test case) where an file containing expected output can be found. (The generated path is inferred from this.)"
} }
] ]
}
}, },
"expectedErrors": { "expectedErrors": {
"title": "A collection of expected error messages for this test-case.", "title": "A collection of expected error messages for this test-case.",
@ -135,5 +136,4 @@
"minItems": 1 "minItems": 1
} }
} }
}
} }