From 30d966fd9b8df4763be0f96467f3912c4c6c778b Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sat, 17 Dec 2022 23:13:19 -0800 Subject: [PATCH] Stub store --- Sources/Packages/Tests/SecretAgentKitTests/StubStore.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Sources/Packages/Tests/SecretAgentKitTests/StubStore.swift b/Sources/Packages/Tests/SecretAgentKitTests/StubStore.swift index a4fd344..ae6af46 100644 --- a/Sources/Packages/Tests/SecretAgentKitTests/StubStore.swift +++ b/Sources/Packages/Tests/SecretAgentKitTests/StubStore.swift @@ -78,6 +78,9 @@ extension Stub { public func persistAuthentication(secret: Stub.Secret, forDuration duration: TimeInterval) throws { } + public func reloadSecrets() { + } + } }