We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22cd90 commit 3d280b8Copy full SHA for 3d280b8
instrumentation/opentelemetry-instrumentation-asgi/tests/test_asgi_middleware.py
@@ -821,7 +821,7 @@ def test_asgi_issue_1883(
821
)
822
except ValueError as exc_info:
823
self.assertEqual(exc_info.args[0], "whatever")
824
- except Exception as exc_info:
+ except Exception as exc_info: # pylint: disable=W0703
825
self.fail(
826
"expecting ValueError('whatever'), received instead: "
827
+ str(exc_info)
0 commit comments