Skip to content

Commit

Permalink
fixup after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
libretto committed Oct 25, 2024
1 parent cba3c0d commit 445519e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_schema_avro_references.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ async def test_avro_references_compatibility(registry_async_client: Client) -> N
},
)
assert res.status_code == 200
assert res.json() == {"is_compatible": False}
assert res.json() == {"is_compatible": False, "messages": ["reader type: string not compatible with writer type: int"]}


async def test_avro_union_references(registry_async_client: Client) -> None:
Expand Down Expand Up @@ -291,5 +291,5 @@ async def test_avro_incompatible_name_references(registry_async_client: Client)
},
)
assert res.status_code == 409
msg = "Incompatible schema, compatibility_mode=BACKWARD expected: com.netapp.Address"
msg = "Incompatible schema, compatibility_mode=BACKWARD. Incompatibilities: expected: com.netapp.Address"
assert res.json()["message"] == msg

0 comments on commit 445519e

Please sign in to comment.