Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
provinzkraut committed Nov 28, 2024
1 parent 2bc44c1 commit a2fae41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def controller_handler(self) -> None:
assert router_handler.resolve_request_max_body_size() == 1
assert app_handler.resolve_request_max_body_size() == 3
assert (
next(r for r in app.routes if r.path == "/3").route_handler_map["POST"][0].resolve_request_max_body_size() == 2 # type: ignore[union-attr]
next(r for r in app.routes if r.path == "/3").route_handler_map["POST"].resolve_request_max_body_size() == 2 # type: ignore[union-attr]
)


Expand Down

0 comments on commit a2fae41

Please sign in to comment.