We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f05817 commit e8d59caCopy full SHA for e8d59ca
python/requirements-dev.txt
@@ -74,7 +74,7 @@ urllib3==2.5.0
74
# via
75
# requests
76
# types-requests
77
-werkzeug==3.0.6
+werkzeug==3.1.4
78
# via pytest-httpserver
79
wheel==0.44.0
80
# via pip-tools
python/tests/test_client.py
@@ -204,6 +204,7 @@ def webhook_handler(request: Request) -> Response:
204
assert "Svix-Signature" in request.headers
205
206
webhook = Webhook(secret)
207
+ headers: dict[str, str] = dict(request.headers.items())
208
received_payload = webhook.verify(request.data, request.headers)
209
assert received_payload == payload
210
0 commit comments