Skip to content

Commit

Permalink
Fix build failure due to no default values.
Browse files Browse the repository at this point in the history
  • Loading branch information
harithmaduranga committed Jan 17, 2025
1 parent 3dd6470 commit 8d3cf96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ballerina/tests/test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8d3cf96

Please sign in to comment.