Skip to content

Commit ecf2747

Browse files
committed
2 parents ae4714c + 97f030a commit ecf2747

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Aspose.Cells.Cloud.SDK.Test/Conversion/ConversionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void TestWorkbookSaveAs(string format,string newfilename)
6666

6767
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
6868

69-
var saveOptions = new PdfSaveOptions()
69+
var saveOptions = new SaveOptions()
7070
{
7171
SaveFormat = format
7272
};

Aspose.Cells.Cloud.SDK.Test/Infrastructure/CellsTestCommon.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,25 @@ public class CellsTestCommon
3535
{
3636
private string BaseUri
3737
{
38-
get { return Environment.GetEnvironmentVariable("CellsCloudTestApiBaseUrl"); }
38+
get { return Environment.GetEnvironmentVariable("CellsCloudApiBaseUrl"); }
3939
}
4040

4141
private string ApiVersion
4242
{
4343
get
4444
{
45-
string apiVersion = Environment.GetEnvironmentVariable("CellsCloudTestApiBaseUrl");
45+
string apiVersion = Environment.GetEnvironmentVariable("CellsCloudApiBaseUrl");
4646
return string.IsNullOrEmpty(apiVersion)?apiVersion:"v3.0";
4747
}
4848
}
4949

5050
private string ClientId
5151
{
52-
get { return Environment.GetEnvironmentVariable("CellsCloudTestClientId"); }
52+
get { return Environment.GetEnvironmentVariable("CellsCloudClientId"); }
5353
}
5454
private string ClientSecret
5555
{
56-
get { return Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"); }
56+
get { return Environment.GetEnvironmentVariable("CellsCloudClientSecret"); }
5757
}
5858

5959
protected const string ProductName = "Cells";

0 commit comments

Comments
 (0)