From 5325a997550ae1799bd616d66408395ad6baeb8b Mon Sep 17 00:00:00 2001 From: Niek Otten Date: Mon, 20 Jul 2026 12:23:48 +0200 Subject: [PATCH] fix(acceptance): CapturingDomainClient matches the new ProvideDocumentsAsync signature (refs #103) The BFF IDomainClient.ProvideDocumentsAsync grew (base64 file + name/type); the acceptance host's fake wasn't updated, breaking the Release build (per-project Debug builds missed it). Co-Authored-By: Claude Opus 4.8 (1M context) --- tests/acceptance/Support/BffAcceptanceHost.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/acceptance/Support/BffAcceptanceHost.cs b/tests/acceptance/Support/BffAcceptanceHost.cs index ee4cd8c..75f492f 100644 --- a/tests/acceptance/Support/BffAcceptanceHost.cs +++ b/tests/acceptance/Support/BffAcceptanceHost.cs @@ -72,7 +72,8 @@ public sealed class CapturingDomainClient : IDomainClient public Task WithdrawRegistrationAsync(string registrationId, string bsn, CancellationToken ct = default) => Task.FromResult(true); - public Task ProvideDocumentsAsync(string registrationId, string bsn, CancellationToken ct = default) + public Task ProvideDocumentsAsync( + string registrationId, string bsn, string contentBase64, string? fileName, string? contentType, CancellationToken ct = default) => Task.FromResult(true); public Task> GetWerkbakAsync(CancellationToken ct = default)