Skip to content

Commit

Permalink
Merge pull request #6 from MohamedSabthar/main
Browse files Browse the repository at this point in the history
Fix test failure due to no default values
  • Loading branch information
ThisaruGuruge authored Jan 20, 2025
2 parents 1579af6 + 92cdb17 commit 9e29c9e
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 @@ -19,9 +19,9 @@ import ballerina/oauth2;
import ballerina/os;
import ballerina/test;

configurable string clientId = ?;
configurable string clientSecret = ?;
configurable string refreshToken = ?;
configurable string clientId = "clientId";
configurable string clientSecret = "clientSecret";
configurable string refreshToken = "refreshToken";
configurable boolean enableLiveServerTest = false;

final boolean isLiveServer = os:getEnv("IS_LIVE_SERVER") == "true";
Expand Down

0 comments on commit 9e29c9e

Please sign in to comment.