Skip to content

Commit

Permalink
Add missing @preconcurrency Security import
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonpi committed Dec 13, 2024
1 parent 080df47 commit d9b750a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Tests/X509Tests/SecKeyWrapperTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@
//
//===----------------------------------------------------------------------===//

@preconcurrency import XCTest
import XCTest
@_spi(Testing) @testable import X509
#if canImport(Darwin)
@preconcurrency import Security
#endif

#if canImport(Darwin)
final class SecKeyWrapperTests: XCTestCase {
Expand Down
5 changes: 4 additions & 1 deletion Tests/X509Tests/SignatureTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
//
//===----------------------------------------------------------------------===//

@preconcurrency import XCTest
import XCTest
@preconcurrency import Crypto
import _CryptoExtras
import SwiftASN1
@testable import X509
#if canImport(Darwin)
@preconcurrency import Security
#endif

final class SignatureTests: XCTestCase {
static let now = Date()
Expand Down

0 comments on commit d9b750a

Please sign in to comment.