From b3bd35389ec47c2eef3548990120ddc22c47eb03 Mon Sep 17 00:00:00 2001 From: Joe DeCock Date: Fri, 16 Aug 2024 19:54:10 -0500 Subject: [PATCH] Revert minor changes not needed here --- test/Duende.Bff.Tests/TestFramework/ApiResponse.cs | 2 +- test/Duende.Bff.Tests/TestFramework/GenericHost.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Duende.Bff.Tests/TestFramework/ApiResponse.cs b/test/Duende.Bff.Tests/TestFramework/ApiResponse.cs index e93a9317..a99c6ecf 100644 --- a/test/Duende.Bff.Tests/TestFramework/ApiResponse.cs +++ b/test/Duende.Bff.Tests/TestFramework/ApiResponse.cs @@ -5,7 +5,7 @@ namespace Duende.Bff.Tests.TestFramework { - public record ApiResponse(string Method, string Path, string Sub, string ClientId, Bff.ClaimRecord[] Claims) + public record ApiResponse(string Method, string Path, string Sub, string ClientId, IEnumerable Claims) { public string Body { get; init; } diff --git a/test/Duende.Bff.Tests/TestFramework/GenericHost.cs b/test/Duende.Bff.Tests/TestFramework/GenericHost.cs index 07f42607..32503012 100644 --- a/test/Duende.Bff.Tests/TestFramework/GenericHost.cs +++ b/test/Duende.Bff.Tests/TestFramework/GenericHost.cs @@ -48,7 +48,7 @@ public T Resolve() public string Url(string path = null) { - path = path ?? string.Empty; + path = path ?? String.Empty; if (!path.StartsWith("/")) path = "/" + path; return _baseAddress + path; }