Skip to content

Commit

Permalink
Merge pull request #4 from harithmaduranga/main
Browse files Browse the repository at this point in the history
Fix build failure due to no default values.
  • Loading branch information
MohamedSabthar authored Jan 17, 2025
2 parents b6efd02 + 8d3cf96 commit 52a13f2
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 52a13f2

Please sign in to comment.