Skip to content

Commit cd9bbd0

Browse files
committed
fix combine tests
1 parent b0eafde commit cd9bbd0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Tests/ParseSwiftTests/ParseSchemaCombineTests.swift

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
7070
.addIndex("hello", field: "world", index: "yolo")
7171
}
7272

73-
func testCreate() async throws {
73+
func testCreate() throws {
7474
var subscriptions = Set<AnyCancellable>()
7575
let schema = createDummySchema()
7676

@@ -108,7 +108,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
108108
wait(for: [expectation1], timeout: 20.0)
109109
}
110110

111-
func testCreateError() async throws {
111+
func testCreateError() throws {
112112
var subscriptions = Set<AnyCancellable>()
113113
let schema = createDummySchema()
114114

@@ -141,7 +141,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
141141
wait(for: [expectation1], timeout: 20.0)
142142
}
143143

144-
func testUpdate() async throws {
144+
func testUpdate() throws {
145145
var subscriptions = Set<AnyCancellable>()
146146
let schema = createDummySchema()
147147

@@ -179,7 +179,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
179179
wait(for: [expectation1], timeout: 20.0)
180180
}
181181

182-
func testUpdateError() async throws {
182+
func testUpdateError() throws {
183183
var subscriptions = Set<AnyCancellable>()
184184
let schema = createDummySchema()
185185

@@ -212,7 +212,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
212212
wait(for: [expectation1], timeout: 20.0)
213213
}
214214

215-
func testFetch() async throws {
215+
func testFetch() throws {
216216
var subscriptions = Set<AnyCancellable>()
217217
let schema = createDummySchema()
218218

@@ -250,7 +250,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
250250
wait(for: [expectation1], timeout: 20.0)
251251
}
252252

253-
func testFetchError() async throws {
253+
func testFetchError() throws {
254254
var subscriptions = Set<AnyCancellable>()
255255
let schema = createDummySchema()
256256

@@ -283,7 +283,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
283283
wait(for: [expectation1], timeout: 20.0)
284284
}
285285

286-
func testPurge() async throws {
286+
func testPurge() throws {
287287
var subscriptions = Set<AnyCancellable>()
288288
let schema = createDummySchema()
289289

@@ -316,7 +316,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
316316
wait(for: [expectation1], timeout: 20.0)
317317
}
318318

319-
func testPurgeError() async throws {
319+
func testPurgeError() throws {
320320
var subscriptions = Set<AnyCancellable>()
321321
let schema = createDummySchema()
322322

@@ -349,7 +349,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
349349
wait(for: [expectation1], timeout: 20.0)
350350
}
351351

352-
func testDelete() async throws {
352+
func testDelete() throws {
353353
var subscriptions = Set<AnyCancellable>()
354354
let schema = createDummySchema()
355355

@@ -382,7 +382,7 @@ class ParseSchemaCombineTests: XCTestCase { // swiftlint:disable:this type_body_
382382
wait(for: [expectation1], timeout: 20.0)
383383
}
384384

385-
func testDeleteError() async throws {
385+
func testDeleteError() throws {
386386
var subscriptions = Set<AnyCancellable>()
387387
let schema = createDummySchema()
388388

0 commit comments

Comments
 (0)