Skip to content

Commit

Permalink
fixup! [asgi] add test for #1883
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasleveil committed Jul 15, 2023
1 parent b22cd90 commit 3d280b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ def test_asgi_issue_1883(
)
except ValueError as exc_info:
self.assertEqual(exc_info.args[0], "whatever")
except Exception as exc_info:
except Exception as exc_info: # pylint: disable=W0703
self.fail(
"expecting ValueError('whatever'), received instead: "
+ str(exc_info)
Expand Down

0 comments on commit 3d280b8

Please sign in to comment.