Regenerate all test expected outputs

Properties are now in a different order due to the preserve_order feature flag
This commit is contained in:
Graham Esau 2020-09-24 20:47:46 +01:00
parent 858543aca1
commit 5ddd44a9e5
28 changed files with 1452 additions and 1452 deletions

View file

@ -12,6 +12,12 @@
"byte_or_bool2": {
"$ref": "#/definitions/Or_for_uint8_and_Boolean"
},
"unit_or_t2": {
"$ref": "#/definitions/Or_for_Null_and_int32"
},
"s": {
"$ref": "#/definitions/Str"
},
"fake_map": {
"type": "object",
"additionalProperties": {
@ -20,26 +26,9 @@
"type": "string"
}
}
},
"s": {
"$ref": "#/definitions/Str"
},
"unit_or_t2": {
"$ref": "#/definitions/Or_for_Null_and_int32"
}
},
"definitions": {
"Or_for_Null_and_int32": {
"anyOf": [
{
"type": "null"
},
{
"type": "integer",
"format": "int32"
}
]
},
"Or_for_uint8_and_Boolean": {
"anyOf": [
{
@ -52,6 +41,17 @@
}
]
},
"Or_for_Null_and_int32": {
"anyOf": [
{
"type": "null"
},
{
"type": "integer",
"format": "int32"
}
]
},
"Str": {
"type": "string"
}