Skip to content

Commit

Permalink
Revert minor changes not needed here
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Aug 17, 2024
1 parent fe3a2f0 commit b3bd353
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Duende.Bff.Tests/TestFramework/ApiResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Bff.ClaimRecord> Claims)
{
public string Body { get; init; }

Expand Down
2 changes: 1 addition & 1 deletion test/Duende.Bff.Tests/TestFramework/GenericHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public T Resolve<T>()

public string Url(string path = null)
{
path = path ?? string.Empty;
path = path ?? String.Empty;
if (!path.StartsWith("/")) path = "/" + path;
return _baseAddress + path;
}
Expand Down

0 comments on commit b3bd353

Please sign in to comment.