FasterXML / jackson-module-jsonSchema

Module for generating JSON Schema (v3) definitions from POJOs
371 stars 135 forks source link

Fix 4 flaky tests in TestGenerateJsonSchema #144

Closed NanaOkada closed 3 years ago

NanaOkada commented 3 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 3 years ago

Thanks!