Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit b3bd353

Browse files
committed
Revert minor changes not needed here
1 parent fe3a2f0 commit b3bd353

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/Duende.Bff.Tests/TestFramework/ApiResponse.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Duende.Bff.Tests.TestFramework
77
{
8-
public record ApiResponse(string Method, string Path, string Sub, string ClientId, Bff.ClaimRecord[] Claims)
8+
public record ApiResponse(string Method, string Path, string Sub, string ClientId, IEnumerable<Bff.ClaimRecord> Claims)
99
{
1010
public string Body { get; init; }
1111

test/Duende.Bff.Tests/TestFramework/GenericHost.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public T Resolve<T>()
4848

4949
public string Url(string path = null)
5050
{
51-
path = path ?? string.Empty;
51+
path = path ?? String.Empty;
5252
if (!path.StartsWith("/")) path = "/" + path;
5353
return _baseAddress + path;
5454
}

0 commit comments

Comments
 (0)