Skip to content

Commit 3d280b8

Browse files
committed
fixup! [asgi] add test for #1883
1 parent b22cd90 commit 3d280b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instrumentation/opentelemetry-instrumentation-asgi/tests/test_asgi_middleware.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ def test_asgi_issue_1883(
821821
)
822822
except ValueError as exc_info:
823823
self.assertEqual(exc_info.args[0], "whatever")
824-
except Exception as exc_info:
824+
except Exception as exc_info: # pylint: disable=W0703
825825
self.fail(
826826
"expecting ValueError('whatever'), received instead: "
827827
+ str(exc_info)

0 commit comments

Comments
 (0)