diff --git a/tests/asyncapi/base/arguments.py b/tests/asyncapi/base/arguments.py index 658b3de5f3..d289c94270 100644 --- a/tests/asyncapi/base/arguments.py +++ b/tests/asyncapi/base/arguments.py @@ -403,7 +403,7 @@ class TestModel(pydantic.BaseModel): broker = self.broker_class() @broker.subscriber("test") - async def handle(user: TestModel): ... + async def handle(model: TestModel): ... schema = get_app_schema(self.build_app(broker)).to_jsonable()