Skip to content

Commit 9c146a6

Browse files
Andrey KaferiAndrey Kaferi
authored andcommitted
Update to v20.5
1 parent 3e20dc4 commit 9c146a6

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

AsposePdfCloud.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2009,7 +2009,7 @@
20092009
"@executable_path/Frameworks",
20102010
"@loader_path/Frameworks",
20112011
);
2012-
MARKETING_VERSION = 20.4.0;
2012+
MARKETING_VERSION = 20.5.0;
20132013
PRODUCT_BUNDLE_IDENTIFIER = com.aspose.AsposePdfCloud;
20142014
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
20152015
SKIP_INSTALL = YES;
@@ -2038,7 +2038,7 @@
20382038
"@executable_path/Frameworks",
20392039
"@loader_path/Frameworks",
20402040
);
2041-
MARKETING_VERSION = 20.4.0;
2041+
MARKETING_VERSION = 20.5.0;
20422042
PRODUCT_BUNDLE_IDENTIFIER = com.aspose.AsposePdfCloud;
20432043
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
20442044
SKIP_INSTALL = YES;

AsposePdfCloudTests/ConvertTests.swift

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -805,18 +805,18 @@ class ConvertTests: AsposePdfCloudTests {
805805
}
806806

807807

808-
//to LaTeX
808+
//to TeX
809809

810-
func testGetPdfInStorageToLaTeX() {
810+
func testGetPdfInStorageToTeX() {
811811

812-
let expectation = self.expectation(description: "testGetPdfInStorageToLaTeX")
812+
let expectation = self.expectation(description: "testGetPdfInStorageToTeX")
813813

814814
uploadFile(name: fileName) {
815815

816-
PdfAPI.getPdfInStorageToLaTeX(name: self.fileName, folder: self.tempFolder) {
816+
PdfAPI.getPdfInStorageToTeX(name: self.fileName, folder: self.tempFolder) {
817817
(response, error) in
818818
guard error == nil else {
819-
XCTFail("error testGetPdfInStorageToLaTeX")
819+
XCTFail("error testGetPdfInStorageToTeX")
820820
return
821821
}
822822

@@ -831,18 +831,18 @@ class ConvertTests: AsposePdfCloudTests {
831831
self.waitForExpectations(timeout: testTimeout, handler: nil)
832832
}
833833

834-
func testPutPdfInStorageToLaTeX() {
834+
func testPutPdfInStorageToTeX() {
835835

836-
let expectation = self.expectation(description: "testPutPdfInStorageToLaTeX")
836+
let expectation = self.expectation(description: "testPutPdfInStorageToTeX")
837837
let resFileName = "result.tex"
838838
let outPath = "\(self.tempFolder)/\(resFileName)"
839839

840840
uploadFile(name: fileName) {
841841

842-
PdfAPI.putPdfInStorageToLaTeX(name: self.fileName, outPath: outPath, folder: self.tempFolder) {
842+
PdfAPI.putPdfInStorageToTeX(name: self.fileName, outPath: outPath, folder: self.tempFolder) {
843843
(response, error) in
844844
guard error == nil else {
845-
XCTFail("error testPutPdfInStorageToLaTeX")
845+
XCTFail("error testPutPdfInStorageToTeX")
846846
return
847847
}
848848

@@ -858,17 +858,17 @@ class ConvertTests: AsposePdfCloudTests {
858858
}
859859

860860

861-
func testPutPdfInRequestToLaTeX() {
861+
func testPutPdfInRequestToTeX() {
862862

863-
let expectation = self.expectation(description: "testPutPdfInRequestToLaTeX")
863+
let expectation = self.expectation(description: "testPutPdfInRequestToTeX")
864864
let resFileName = "result.tex"
865865
let outPath = "\(self.tempFolder)/\(resFileName)"
866866
let file = getURL(fileName)
867867

868-
PdfAPI.putPdfInRequestToLaTeX(outPath: outPath, file: file) {
868+
PdfAPI.putPdfInRequestToTeX(outPath: outPath, file: file) {
869869
(response, error) in
870870
guard error == nil else {
871-
XCTFail("error testPutPdfInRequestToLaTeX")
871+
XCTFail("error testPutPdfInRequestToTeX")
872872
return
873873
}
874874

AsposePdfCloudTests/ConvertToPdfTests.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,18 +131,18 @@ class ConvertToPdfTests: AsposePdfCloudTests {
131131
}
132132

133133

134-
// LaTeX
135-
func testGetLaTeXInStorageToPdf() {
134+
// TeX
135+
func testGetTeXInStorageToPdf() {
136136

137-
let expectation = self.expectation(description: "testGetLaTeXInStorageToPdf")
137+
let expectation = self.expectation(description: "testGetTeXInStorageToPdf")
138138
let name = "sample.tex"
139139

140140
uploadFile(name: name) {
141141

142-
PdfAPI.getLaTeXInStorageToPdf(srcPath: "\(self.tempFolder)/\(name)") {
142+
PdfAPI.getTeXInStorageToPdf(srcPath: "\(self.tempFolder)/\(name)") {
143143
(response, error) in
144144
guard error == nil else {
145-
XCTFail("error testGetLaTeXInStorageToPdf: " + (error.debugDescription))
145+
XCTFail("error testGetTeXInStorageToPdf: " + (error.debugDescription))
146146
return
147147
}
148148

@@ -158,18 +158,18 @@ class ConvertToPdfTests: AsposePdfCloudTests {
158158
}
159159

160160

161-
func testPutLaTeXInStorageToPdf() {
161+
func testPutTeXInStorageToPdf() {
162162

163-
let expectation = self.expectation(description: "testPutLaTeXInStorageToPdf")
163+
let expectation = self.expectation(description: "testPutTeXInStorageToPdf")
164164
let name = "sample.tex"
165165
let resultName = "fromTex.pdf"
166166

167167
uploadFile(name: name) {
168168

169-
PdfAPI.putLaTeXInStorageToPdf(name: resultName, srcPath: "\(self.tempFolder)/\(name)", dstFolder: self.tempFolder) {
169+
PdfAPI.putTeXInStorageToPdf(name: resultName, srcPath: "\(self.tempFolder)/\(name)", dstFolder: self.tempFolder) {
170170
(response, error) in
171171
guard error == nil else {
172-
XCTFail("error testPutLaTeXInStorageToPdf: " + (error.debugDescription))
172+
XCTFail("error testPutTeXInStorageToPdf: " + (error.debugDescription))
173173
return
174174
}
175175

0 commit comments

Comments
 (0)