File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed
instrumentation/opentelemetry-instrumentation-pyramid Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ translationstring==1.4
1717typing_extensions==4.9.0
1818venusian==3.1.0
1919WebOb==1.8.7
20- Werkzeug==0.16.1
20+ Werkzeug==3.0.3
2121wrapt==1.16.0
2222zipp==3.17.0
2323zope.deprecation==5.0
Original file line number Diff line number Diff line change 1414
1515import pyramid .httpexceptions as exc
1616from pyramid .response import Response
17- from werkzeug .test import Client
18-
19- # opentelemetry-instrumentation-pyramid uses werkzeug==0.16.1 which has
20- # werkzeug.wrappers.BaseResponse. This is not the case for newer versions of
21- # werkzeug like the one lint uses.
22- from werkzeug .wrappers import BaseResponse # pylint: disable=no-name-in-module
17+ from werkzeug .test import Client , TestResponse
2318
2419
2520class InstrumentationTest :
@@ -77,4 +72,4 @@ def excluded2_endpoint(request):
7772 )
7873
7974 # pylint: disable=attribute-defined-outside-init
80- self .client = Client (config .make_wsgi_app (), BaseResponse )
75+ self .client = Client (config .make_wsgi_app (), TestResponse )
You can’t perform that action at this time.
0 commit comments