Skip to content

Commit 9d9304e

Browse files
Run ruff format
1 parent b5d57aa commit 9d9304e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_lambda_validate.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ def test_lambda_handler_success(mock_lambda_func):
1919
@patch("lambda_validate.lambda_function.lambda_function")
2020
def test_lambda_handler_no_filename(mock_lambda_func):
2121
event = {}
22-
with pytest.raises(
23-
ValueError, match="Filename must be provided in the event data"
24-
):
22+
with pytest.raises(ValueError, match="Filename must be provided in the event data"):
2523
lambda_handler(event, None)
2624

2725

0 commit comments

Comments
 (0)