make test order insensitive

This commit is contained in:
sneakers-the-rat 2024-07-31 16:51:37 -07:00
parent a64bb2186f
commit fef528f3bc
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -64,15 +64,12 @@ def test_schema_tuple():
array: NDArray[Shape["2 x, * y"], (np.uint8, np.uint16)] array: NDArray[Shape["2 x, * y"], (np.uint8, np.uint16)]
schema = Model.model_json_schema() schema = Model.model_json_schema()
assert schema["properties"]["array"]["items"] == { assert "anyOf" in schema["properties"]["array"]["items"]["items"]
"items": { conditions = schema["properties"]["array"]["items"]["items"]["anyOf"]
"anyOf": [
{"maximum": 255, "minimum": 0, "type": "integer"}, assert all([i["type"] == "integer" for i in conditions])
{"maximum": 65535, "minimum": 0, "type": "integer"}, assert sorted([i["maximum"] for i in conditions]) == [255, 65535]
] assert all([i["minimum"] == 0 for i in conditions])
},
"type": "array",
}
def test_schema_number(): def test_schema_number():