Skip to content

Commit

Permalink
Use status_code in Avro schema export tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaakola-aiven committed Apr 12, 2022
1 parent dd1d0ed commit 49943dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_schema_backup_avro_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async def insert_data(c: Client, schemaType: str, subject: str, data: Dict[str,
"subjects/{}/versions".format(subject),
json={"schema": f"{schema_string}", "schemaType": schemaType},
)
assert res.status == 200
assert res.status_code == 200
assert "id" in res.json()


Expand Down

0 comments on commit 49943dd

Please sign in to comment.