Fix unit test
This commit is contained in:
parent
6f295be74d
commit
af9e35a788
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ class PGPAgentTest: XCTestCase {
|
||||||
try KeyFileManager(keyType: PgpKey.PRIVATE, keyPath: "", keyHandler: keychain.add).importKey(from: keyTriple.privateKey)
|
try KeyFileManager(keyType: PgpKey.PRIVATE, keyPath: "", keyHandler: keychain.add).importKey(from: keyTriple.privateKey)
|
||||||
XCTAssert(pgpAgent.isPrepared)
|
XCTAssert(pgpAgent.isPrepared)
|
||||||
try pgpAgent.initKeys()
|
try pgpAgent.initKeys()
|
||||||
XCTAssert(pgpAgent.keyId!.lowercased().hasSuffix(keyTriple.fingerprint))
|
XCTAssert(try pgpAgent.getKeyId()!.lowercased().hasSuffix(keyTriple.fingerprint))
|
||||||
try [
|
try [
|
||||||
(true, true), (true, false), (false, true), (false, false)
|
(true, true), (true, false), (false, true), (false, false)
|
||||||
].forEach{ a, b in
|
].forEach{ a, b in
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue