Skip to content

Commit b62ee9b

Browse files
committed
nits
1 parent 01241e4 commit b62ee9b

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ coverage:
66
status:
77
patch:
88
default:
9-
target: auto
9+
target: 75
1010
changes: false
1111
project:
1212
default:

Tests/ParseSwiftTests/MigrateObjCSDKCombineTests.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
424424
wait(for: [expectation1], timeout: 20.0)
425425
}
426426

427-
func testSaveCurrentInstallation() throws {
427+
func saveCurrentInstallation() throws {
428428
guard var installation = Installation.current else {
429429
XCTFail("Should unwrap")
430430
return
@@ -468,7 +468,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
468468
var subscriptions = Set<AnyCancellable>()
469469
let expectation1 = XCTestExpectation(description: "Migrate Installation")
470470

471-
try testSaveCurrentInstallation()
471+
try saveCurrentInstallation()
472472
MockURLProtocol.removeAll()
473473

474474
guard let installation = Installation.current,
@@ -554,7 +554,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
554554
var subscriptions = Set<AnyCancellable>()
555555
let expectation1 = XCTestExpectation(description: "Migrate Installation")
556556

557-
try testSaveCurrentInstallation()
557+
try saveCurrentInstallation()
558558
MockURLProtocol.removeAll()
559559

560560
guard let installation = Installation.current,
@@ -640,7 +640,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
640640
var subscriptions = Set<AnyCancellable>()
641641
let expectation1 = XCTestExpectation(description: "Migrate Installation")
642642

643-
try testSaveCurrentInstallation()
643+
try saveCurrentInstallation()
644644
MockURLProtocol.removeAll()
645645

646646
guard let installation = Installation.current,
@@ -701,7 +701,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
701701
var subscriptions = Set<AnyCancellable>()
702702
let expectation1 = XCTestExpectation(description: "Migrate Installation")
703703

704-
try testSaveCurrentInstallation()
704+
try saveCurrentInstallation()
705705
MockURLProtocol.removeAll()
706706

707707
setupObjcKeychainSDK(installationId: objcInstallationId)
@@ -741,7 +741,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
741741
var subscriptions = Set<AnyCancellable>()
742742
let expectation1 = XCTestExpectation(description: "Migrate Installation")
743743

744-
try testSaveCurrentInstallation()
744+
try saveCurrentInstallation()
745745
MockURLProtocol.removeAll()
746746

747747
guard let installation = Installation.current,
@@ -801,7 +801,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
801801
var subscriptions = Set<AnyCancellable>()
802802
let expectation1 = XCTestExpectation(description: "Delete ObjC Installation")
803803

804-
try testSaveCurrentInstallation()
804+
try saveCurrentInstallation()
805805
MockURLProtocol.removeAll()
806806

807807
guard let installation = Installation.current,
@@ -864,7 +864,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
864864
var subscriptions = Set<AnyCancellable>()
865865
let expectation1 = XCTestExpectation(description: "Delete ObjC Installation")
866866

867-
try testSaveCurrentInstallation()
867+
try saveCurrentInstallation()
868868
MockURLProtocol.removeAll()
869869

870870
guard let installation = Installation.current,
@@ -907,7 +907,7 @@ class MigrateObjCSDKCombineTests: XCTestCase {
907907
var subscriptions = Set<AnyCancellable>()
908908
let expectation1 = XCTestExpectation(description: "Delete ObjC Installation")
909909

910-
try testSaveCurrentInstallation()
910+
try saveCurrentInstallation()
911911
MockURLProtocol.removeAll()
912912

913913
guard let installation = Installation.current,

Tests/ParseSwiftTests/MigrateObjCSDKTests.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
347347
}
348348
}
349349

350-
func testSaveCurrentInstallation() throws {
350+
func saveCurrentInstallation() throws {
351351
guard var installation = Installation.current else {
352352
XCTFail("Should unwrap")
353353
return
@@ -389,7 +389,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
389389

390390
@MainActor
391391
func testMigrateInstallation() async throws {
392-
try testSaveCurrentInstallation()
392+
try saveCurrentInstallation()
393393
MockURLProtocol.removeAll()
394394

395395
guard let installation = Installation.current,
@@ -461,7 +461,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
461461

462462
@MainActor
463463
func testMigrateInstallationServerError() async throws {
464-
try testSaveCurrentInstallation()
464+
try saveCurrentInstallation()
465465
MockURLProtocol.removeAll()
466466

467467
setupObjcKeychainSDK(installationId: objcInstallationId)
@@ -493,7 +493,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
493493

494494
@MainActor
495495
func testMigrateInstallationNoObjcKeychain() async throws {
496-
try testSaveCurrentInstallation()
496+
try saveCurrentInstallation()
497497
MockURLProtocol.removeAll()
498498

499499
guard let installation = Installation.current,
@@ -537,7 +537,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
537537

538538
@MainActor
539539
func testMigrateInstallationDontCopyEntire() async throws {
540-
try testSaveCurrentInstallation()
540+
try saveCurrentInstallation()
541541
MockURLProtocol.removeAll()
542542

543543
guard let installation = Installation.current,
@@ -609,7 +609,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
609609

610610
@MainActor
611611
func testMigrateInstallationAlreadyMigrated() async throws {
612-
try testSaveCurrentInstallation()
612+
try saveCurrentInstallation()
613613
MockURLProtocol.removeAll()
614614

615615
guard let installation = Installation.current,
@@ -656,7 +656,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
656656

657657
@MainActor
658658
func testDeleteObjCKeychain() async throws {
659-
try testSaveCurrentInstallation()
659+
try saveCurrentInstallation()
660660
MockURLProtocol.removeAll()
661661

662662
guard let installation = Installation.current,
@@ -706,7 +706,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
706706

707707
@MainActor
708708
func testDeleteObjCKeychainAlreadyMigrated() async throws {
709-
try testSaveCurrentInstallation()
709+
try saveCurrentInstallation()
710710
MockURLProtocol.removeAll()
711711

712712
guard let installation = Installation.current,
@@ -736,7 +736,7 @@ class MigrateObjCSDKTests: XCTestCase { // swiftlint:disable:this type_body_leng
736736

737737
@MainActor
738738
func testDeleteObjCKeychainNoObjcKeychain() async throws {
739-
try testSaveCurrentInstallation()
739+
try saveCurrentInstallation()
740740
MockURLProtocol.removeAll()
741741

742742
guard let installation = Installation.current,

0 commit comments

Comments
 (0)