Skip to content

Commit

Permalink
fix(iostest): adjust to new naming
Browse files Browse the repository at this point in the history
  • Loading branch information
benjohnde committed Oct 25, 2023
1 parent deb0317 commit 794fe0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion iostests/Sources/DebugViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class DebugViewController: UIViewController {
}

@objc func debug() {
let vault = KVault(serviceName: "DEBUG", accessGroup: nil, accessibility: KVault.Accessible.afterfirstunlock)
let vault = KVaultImpl(serviceName: "DEBUG", accessGroup: nil, accessibility: KVaultImpl.Accessible.afterfirstunlock)
self.performOperations(on: vault)
}

Expand Down
6 changes: 3 additions & 3 deletions iostests/Sources/Keychain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ public struct Keychain {
// MARK: - Keychain

public static var `default`: KVault {
KVault(serviceName: "com.liftric.default", accessGroup: nil, accessibility: KVault.Accessible.afterfirstunlock)
KVaultImpl(serviceName: "com.liftric.default", accessGroup: nil, accessibility: KVaultImpl.Accessible.afterfirstunlock)
}

public static var scoped: KVault {
KVault(serviceName: "com.liftric.test", accessGroup: nil, accessibility: KVault.Accessible.afterfirstunlock)
KVaultImpl(serviceName: "com.liftric.test", accessGroup: nil, accessibility: KVaultImpl.Accessible.afterfirstunlock)
}

public static var global: KVault {
KVault(serviceName: nil, accessGroup: nil, accessibility: KVault.Accessible.afterfirstunlock)
KVaultImpl(serviceName: nil, accessGroup: nil, accessibility: KVaultImpl.Accessible.afterfirstunlock)
}
}

0 comments on commit 794fe0f

Please sign in to comment.