From 8d3cf96a140cc2e2662c690acb0fb03522cf94fd Mon Sep 17 00:00:00 2001 From: harithmaduranga Date: Fri, 17 Jan 2025 15:32:37 +0530 Subject: [PATCH] Fix build failure due to no default values. --- ballerina/tests/test.bal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ballerina/tests/test.bal b/ballerina/tests/test.bal index 35bb3c3..43cfebf 100644 --- a/ballerina/tests/test.bal +++ b/ballerina/tests/test.bal @@ -18,9 +18,9 @@ import ballerina/http; import ballerina/oauth2; import ballerina/test; -configurable string clientId = ?; -configurable string clientSecret = ?; -configurable string refreshToken = ?; +configurable string clientId = "clientId"; +configurable string clientSecret ="clientSecret"; +configurable string refreshToken = "refreshToken"; OAuth2RefreshTokenGrantConfig auth = { clientId,