Skip to content

Commit

Permalink
Update test_division.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravpatel67 authored Nov 22, 2024
1 parent 7b1d43c commit 6a1544f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def test_division():
event = {
"operation": "divide",
"first_number": 6,
"second_number": 2
"second_number": 3
}
result = lambda_handler(event, None)

Expand Down Expand Up @@ -59,4 +59,4 @@ def test_divide_with_missing_both_number():
result = lambda_handler(event, None)

assert result["statusCode"] == 400
assert result["body"]["error"] == "Both numbers are required"
assert result["body"]["error"] == "Both numbers are required"

0 comments on commit 6a1544f

Please sign in to comment.