From e951e47b405868c6a765202f3e2ef3754bda46f4 Mon Sep 17 00:00:00 2001 From: Thisara Weerakoon <83450623+ThisaraWeerakoon@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:37:53 +0530 Subject: [PATCH] Update ballerina/tests/mock_service.bal Co-authored-by: MohamedSabthar --- ballerina/tests/mock_service.bal | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ballerina/tests/mock_service.bal b/ballerina/tests/mock_service.bal index c094543..476bb73 100644 --- a/ballerina/tests/mock_service.bal +++ b/ballerina/tests/mock_service.bal @@ -109,8 +109,3 @@ service on new http:Listener(9090) { }; -function init() returns error? { - log:printInfo("Initializing mock service"); - check httpListener.attach(mockService, "/"); - check httpListener.'start(); -}