fix: refresh checked workflow contract manifest

This commit is contained in:
lda
2026-09-09 19:34:17 +07:00 Verified
parent 5cd8d8c7e1
commit b7c5f4e0eb
2 changed files with 643 additions and 3 deletions
+3 -3
View File
@@ -90,9 +90,9 @@ def test_generates_the_complete_real_workflow_contract() -> None:
manifest = generate_manifest()
schemas = manifest["components"]["schemas"]
assert len(manifest["operations"]) == 72
assert len({operation["method"] for operation in manifest["operations"]}) == 72
assert len(schemas) == 141
assert len(manifest["operations"]) == 80
assert len({operation["method"] for operation in manifest["operations"]}) == 80
assert len(schemas) == 144
assert len(manifest["components"]["errors"]) == 1
assert all(
set(operation["result"]["schema"]) == {"$ref"}