✅ fix test for read only values
This commit is contained in:
parent
3d7feb1125
commit
72256c3368
@ -16,8 +16,13 @@ static const json read_only_schema = R"({
|
|||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
json_validator validator(read_only_schema);
|
json_validator validator(read_only_schema);
|
||||||
validator.validate(R"({
|
try {
|
||||||
"debug": true
|
validator.validate(R"({
|
||||||
})");
|
"debug": true
|
||||||
return 0;
|
})");
|
||||||
|
} catch (const std::exception&e ) {
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user