From b11ea4cc991aba1547a2a6ae9ec7b127dd031cba Mon Sep 17 00:00:00 2001 From: Kalaiyarasiganeshalingam Date: Tue, 15 Aug 2023 10:14:59 +0530 Subject: [PATCH] Remove print statement --- stdlib-integration-tests/oauth2/tests/oauth2_test.bal | 6 ------ 1 file changed, 6 deletions(-) diff --git a/stdlib-integration-tests/oauth2/tests/oauth2_test.bal b/stdlib-integration-tests/oauth2/tests/oauth2_test.bal index 2f543e4601..4c9696e9f2 100644 --- a/stdlib-integration-tests/oauth2/tests/oauth2_test.bal +++ b/stdlib-integration-tests/oauth2/tests/oauth2_test.bal @@ -16,7 +16,6 @@ import ballerina/http; import ballerina/test; -import ballerina/io; listener http:Listener oauth2Listener = new(25003, { secureSocket: { @@ -94,14 +93,9 @@ service /oauth2 on authorizationServer { string|http:ClientError payload = request.getTextPayload(); if (payload is string) { string[] parts = re `&`.split(payload); - io:println("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); - io:println(payload); - io:println(parts.toBalString()); foreach string part in parts { if (part.indexOf("token=") is int) { - io:println("part: " + part); string token = re `=`.split(part)[1]; - io:println("Token: " + token); if (token == ACCESS_TOKEN) { json response = { "active": true, "exp": 3600, "scp": "read write" }; return response;