remove irrelevant properties from mocks
This commit is contained in:
parent
9e3e3d1134
commit
4e19d9e714
2 changed files with 2 additions and 8 deletions
|
|
@ -9,8 +9,6 @@ import Foundation
|
|||
class MockPGPInterface: PGPInterface {
|
||||
// MARK: - Configuration
|
||||
|
||||
var keyIDs: [String] = []
|
||||
var shortKeyIDs: [String] = []
|
||||
var publicKeyIDs: Set<String> = []
|
||||
var privateKeyIDs: Set<String> = []
|
||||
|
||||
|
|
@ -91,6 +89,6 @@ class MockPGPInterface: PGPInterface {
|
|||
return privateKeyIDs.contains { $0.hasSuffix(keyID.lowercased()) }
|
||||
}
|
||||
|
||||
var keyID: [String] { keyIDs }
|
||||
var shortKeyID: [String] { shortKeyIDs }
|
||||
var keyID: [String] { [] } // currently not relevant in these tests
|
||||
var shortKeyID: [String] { [] } // currently not relevant in these tests
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue