FasterXML / jackson-module-jsonSchema

Module for generating JSON Schema (v3) definitions from POJOs
368 stars 136 forks source link

Fix 4 flaky tests in TestGenerateJsonSchema #144

Closed NanaOkada closed 2 years ago

NanaOkada commented 2 years ago

Tests testSinglePropertyDependency, testMultiplePropertyDependencies, testSchemaPropertyDependency, and testSchemaPropertyDependencies were flaky because the mapper doesn't always write a string in deterministic order and the order of 5 properties in properties was nondeterministic. I configured the mapper so that it will always return fields in the schema in alphabetical order. I also set the order in which property 1-5 should be returned.

cowtowncoder commented 2 years ago

Thanks!