Skip to content

Commit 468748e

Browse files
committed
Fixed unit tests
1 parent a5c3f23 commit 468748e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_root_path(self):
88
event = {"path": "/", "httpMethod": "GET"}
99
response = handle(event, {})
1010
self.assertEqual(response['statusCode'], 200)
11-
self.assertEqual(response['body'], '{"message": "Welcome to the API main!"}')
11+
self.assertEqual(response['body'], '{"message": "Welcome to the API toman!"}')
1212

1313
def test_hello_path(self):
1414
event = {"path": "/hello", "httpMethod": "GET"}

0 commit comments

Comments
 (0)