@@ -70,7 +70,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
70
70
. addIndex ( " hello " , field: " world " , index: " yolo " )
71
71
}
72
72
73
- func testCreate( ) async throws {
73
+ func testCreate( ) throws {
74
74
var subscriptions = Set < AnyCancellable > ( )
75
75
let schema = createDummySchema ( )
76
76
@@ -108,7 +108,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
108
108
wait ( for: [ expectation1] , timeout: 20.0 )
109
109
}
110
110
111
- func testCreateError( ) async throws {
111
+ func testCreateError( ) throws {
112
112
var subscriptions = Set < AnyCancellable > ( )
113
113
let schema = createDummySchema ( )
114
114
@@ -141,7 +141,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
141
141
wait ( for: [ expectation1] , timeout: 20.0 )
142
142
}
143
143
144
- func testUpdate( ) async throws {
144
+ func testUpdate( ) throws {
145
145
var subscriptions = Set < AnyCancellable > ( )
146
146
let schema = createDummySchema ( )
147
147
@@ -179,7 +179,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
179
179
wait ( for: [ expectation1] , timeout: 20.0 )
180
180
}
181
181
182
- func testUpdateError( ) async throws {
182
+ func testUpdateError( ) throws {
183
183
var subscriptions = Set < AnyCancellable > ( )
184
184
let schema = createDummySchema ( )
185
185
@@ -212,7 +212,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
212
212
wait ( for: [ expectation1] , timeout: 20.0 )
213
213
}
214
214
215
- func testFetch( ) async throws {
215
+ func testFetch( ) throws {
216
216
var subscriptions = Set < AnyCancellable > ( )
217
217
let schema = createDummySchema ( )
218
218
@@ -250,7 +250,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
250
250
wait ( for: [ expectation1] , timeout: 20.0 )
251
251
}
252
252
253
- func testFetchError( ) async throws {
253
+ func testFetchError( ) throws {
254
254
var subscriptions = Set < AnyCancellable > ( )
255
255
let schema = createDummySchema ( )
256
256
@@ -283,7 +283,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
283
283
wait ( for: [ expectation1] , timeout: 20.0 )
284
284
}
285
285
286
- func testPurge( ) async throws {
286
+ func testPurge( ) throws {
287
287
var subscriptions = Set < AnyCancellable > ( )
288
288
let schema = createDummySchema ( )
289
289
@@ -316,7 +316,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
316
316
wait ( for: [ expectation1] , timeout: 20.0 )
317
317
}
318
318
319
- func testPurgeError( ) async throws {
319
+ func testPurgeError( ) throws {
320
320
var subscriptions = Set < AnyCancellable > ( )
321
321
let schema = createDummySchema ( )
322
322
@@ -349,7 +349,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
349
349
wait ( for: [ expectation1] , timeout: 20.0 )
350
350
}
351
351
352
- func testDelete( ) async throws {
352
+ func testDelete( ) throws {
353
353
var subscriptions = Set < AnyCancellable > ( )
354
354
let schema = createDummySchema ( )
355
355
@@ -382,7 +382,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
382
382
wait ( for: [ expectation1] , timeout: 20.0 )
383
383
}
384
384
385
- func testDeleteError( ) async throws {
385
+ func testDeleteError( ) throws {
386
386
var subscriptions = Set < AnyCancellable > ( )
387
387
let schema = createDummySchema ( )
388
388
0 commit comments