Skip to content

Commit 00731aa

Browse files
committed
fix regressions.
1 parent 04e9767 commit 00731aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/execution/test_middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ async def reverse_middleware(next_, *args, **kwargs):
226226

227227
class CaptitalizeMiddleware:
228228
# noinspection PyMethodMayBeStatic
229-
async def test_resolve(self, next_, *args, **kwargs):
229+
async def resolve(self, next_, *args, **kwargs):
230230
return (await next_(*args, **kwargs)).capitalize()
231231

232232
middlewares = MiddlewareManager(reverse_middleware, CaptitalizeMiddleware())

0 commit comments

Comments
 (0)