Skip to content

Commit a5c3f23

Browse files
committed
fixed test_hello_path
1 parent b7020b1 commit a5c3f23

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
@@ -14,7 +14,7 @@ def test_hello_path(self):
1414
event = {"path": "/hello", "httpMethod": "GET"}
1515
response = handle(event, {})
1616
self.assertEqual(response['statusCode'], 200)
17-
self.assertEqual(response['body'], '{"message": "Hello main!"}')
17+
self.assertEqual(response['body'], '{"message": "Hello toman!"}')
1818

1919
def test_not_found_path(self):
2020
event = {"path": "/unknown", "httpMethod": "GET"}

0 commit comments

Comments
 (0)