File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1313
1414import Foundation
1515
16- protocol TestSigner {
16+ protocol TestSigner : Sendable {
1717 static func sign( data: Data ) throws -> [ UInt8 ]
1818
1919 static var signature : [ UInt8 ] { get throws }
2020}
2121
22- struct TestKeyConfiguration {
22+ struct TestKeyConfiguration : Sendable {
2323 var signer : any TestSigner . Type
2424 var credentialPublicKeyBuilder : TestCredentialPublicKeyBuilder
2525 var authDataBuilder : TestAuthDataBuilder
Original file line number Diff line number Diff line change @@ -398,7 +398,6 @@ struct WebAuthnManagerRegistrationTests {
398398 rawID: credentialID,
399399 attestationObject: attestationObject
400400 )
401- #expect( credential != nil )
402401
403402 #expect( credential. id == credentialID. base64EncodedString ( ) . asString ( ) )
404403 #expect( credential. publicKey == credentialPublicKey)
You can’t perform that action at this time.
0 commit comments