Skip to content

Commit 023ba9a

Browse files
committed
update Traits.. compile errors occur
1 parent 2fa0805 commit 023ba9a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Tests/PackageSigningTests/SigningEntityTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ struct SigningEntityTests {
7070
}
7171

7272
@Test(
73-
.enableOnlyOnMacOS,
73+
.enabledOn(platform: .MacOS),
7474
.enableIfRealSigningIdentityTestEnabled,
7575
.enableIfEnvVarSet("REAL_SIGNING_IDENTITY_LABEL")
7676
)

Tests/PackageSigningTests/SigningIdentityTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ struct SigningIdentityTests {
8282
}
8383

8484
@Test(
85-
.enableOnlyOnMacOS,
85+
.enabledOn(platform: .MacOS),
8686
.enableIfRealSigningIdentityTestEnabled,
8787
.enableIfEnvVarSet("REAL_SIGNING_IDENTITY_LABEL")
8888
)

Tests/PackageSigningTests/SigningTests.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ struct SigningTests {
735735

736736

737737
@Test(
738-
.enableOnlyOnMacOS,
738+
.enabledOn(platform: .MacOS),
739739
.enableIfRealSigningIdentityTestEnabled,
740740
.enableIfEnvVarSet("REAL_SIGNING_IDENTITY_LABEL")
741741
)
@@ -793,7 +793,7 @@ struct SigningTests {
793793
}
794794

795795
@Test(
796-
.enableOnlyOnMacOS,
796+
.enabledOn(platform: .MacOS),
797797
.enableIfRealSigningIdentityTestEnabled,
798798
.enableIfEnvVarSet("REAL_SIGNING_IDENTITY_LABEL")
799799
)
@@ -849,9 +849,9 @@ struct SigningTests {
849849
}
850850

851851
@Test(
852-
.enableOnlyOnMacOS,
853-
.enableIfRealSigningIdentityTestEnabled,
854-
.enableIfEnvVarSet("REAL_SIGNING_IDENTITY_LABEL")
852+
.enabledOn(platform: .MacOS),
853+
.enableIfRealSigningIdentityTestEnabled,
854+
.enableIfEnvVarSet("REAL_SIGNING_IDENTITY_LABEL")
855855
)
856856
func MSEndToEndWithRSAKeyADPSigningIdentityFromKeychain() async throws {
857857
let label = try #require(

0 commit comments

Comments
 (0)