We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d57aa commit 9d9304eCopy full SHA for 9d9304e
tests/test_lambda_validate.py
@@ -19,9 +19,7 @@ def test_lambda_handler_success(mock_lambda_func):
19
@patch("lambda_validate.lambda_function.lambda_function")
20
def test_lambda_handler_no_filename(mock_lambda_func):
21
event = {}
22
- with pytest.raises(
23
- ValueError, match="Filename must be provided in the event data"
24
- ):
+ with pytest.raises(ValueError, match="Filename must be provided in the event data"):
25
lambda_handler(event, None)
26
27
0 commit comments