Skip to content

Commit 3a14ed9

Browse files
committed
2 parents c54bf9a + 6b7e2f2 commit 3a14ed9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
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
@@ -64,18 +64,18 @@ public static String GetGrantType() {
6464
}
6565

6666
public static String GetClientId() {
67-
return System.getenv("CellsCloudTestClientId");
67+
return System.getenv("CellsCloudClientId");
6868
}
6969

7070
public static String GetClientSecret() {
71-
return System.getenv("CellsCloudTestClientSecret");
71+
return System.getenv("CellsCloudClientSecret");
7272
}
7373

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import java.util.Collections;
3434
import org.junit.Test;
3535
import java.util.ArrayList;
36+
import java.util.Collections;
3637
import java.util.List;
3738
import java.io.File;
3839
import java.util.HashMap;
@@ -227,7 +228,7 @@ public void PutPivotTableFieldTest() throws Exception {
227228

228229
@Test
229230
public void PutWorksheetPivotTableFilterTest() throws Exception {
230-
String localName = "TestCase.xlsx";
231+
String localName = "TestCase.xlsx";
231232
String remoteName = "TestCase.xlsx";
232233

233234
CellsApiUtil.Upload(api, remoteFolder + "/" + remoteName , localName , "");

0 commit comments

Comments
 (0)