We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcfd937 commit 43dbd26Copy full SHA for 43dbd26
Tests/X509Tests/CustomPrivateKeyTests.swift
@@ -14,7 +14,7 @@
14
15
import CryptoKit
16
import SwiftASN1
17
-import X509
+@testable import X509
18
import XCTest
19
20
final class CustomPrivateKeyTests: XCTestCase {
@@ -25,6 +25,7 @@ final class CustomPrivateKeyTests: XCTestCase {
25
XCTAssertEqual(privateKey.publicKey, keyBacking.publicKey)
26
XCTAssertEqual(privateKey.description, "CustomPrivateKey")
27
XCTAssertEqual(keyBacking.hashValue, privateKey.hashValue)
28
+ XCTAssertEqual(keyBacking.defaultSignatureAlgorithm, privateKey.defaultSignatureAlgorithm)
29
}
30
31
func testCustomPrivateKeySigning() async throws {
0 commit comments