Skip to content

Commit

Permalink
fix regressions.
Browse files Browse the repository at this point in the history
  • Loading branch information
nrbnlulu committed Jul 2, 2024
1 parent 04e9767 commit 00731aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/execution/test_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def reverse_middleware(next_, *args, **kwargs):

class CaptitalizeMiddleware:
# noinspection PyMethodMayBeStatic
async def test_resolve(self, next_, *args, **kwargs):
async def resolve(self, next_, *args, **kwargs):
return (await next_(*args, **kwargs)).capitalize()

middlewares = MiddlewareManager(reverse_middleware, CaptitalizeMiddleware())
Expand Down

0 comments on commit 00731aa

Please sign in to comment.