Skip to content

Commit 6b7e2f2

Browse files
committed
Fix test case run env.
1 parent 64b2469 commit 6b7e2f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/aspose/cloud/cells/api/CellsApiUtil.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ public static String GetGrantType() {
6363
}
6464

6565
public static String GetClientId() {
66-
return System.getenv("CellsCloudTestClientId");
66+
return System.getenv("CellsCloudClientId");
6767
}
6868

6969
public static String GetClientSecret() {
70-
return System.getenv("CellsCloudTestClientSecret");
70+
return System.getenv("CellsCloudClientSecret");
7171
}
7272

7373
public static String GetAPIVersion() {
7474
return "v3.0";
7575
}
7676
public static String GetBaseUrl() {
77-
String apiUrl = System.getenv("CellsCloudTestApiBaseUrl");
77+
String apiUrl = System.getenv("CellsCloudApiBaseUrl");
7878
if( apiUrl==null || apiUrl.isEmpty()){
7979
return "https://api-qa.aspose.cloud";
8080
}

0 commit comments

Comments
 (0)