Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ private static OpenApiResponse GetResponse() =>
{
Content = new Dictionary<string, OpenApiMediaType>()
{
{ "application/problem+json", new OpenApiMediaType() },
{ "application/problem+xml", new OpenApiMediaType() },
{ "application/problem+json", new OpenApiMediaType() },
{ "application/problem+xml", new OpenApiMediaType() },
},
};
}
8 changes: 4 additions & 4 deletions Tests/Boxed.AspNetCore.Test/CursorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ public static IEnumerable<object[]> DateTimeOffsetToCursor
// If no-store is set, then location is ignored.
yield return new object[]
{
null!,
string.Empty,
null!,
string.Empty,
};
yield return new object[]
{
new DateTimeOffset(2000, 1, 1, 0, 0, 0, TimeSpan.Zero),
"MDEvMDEvMjAwMCAwMDowMDowMCArMDA6MDA=",
new DateTimeOffset(2000, 1, 1, 0, 0, 0, TimeSpan.Zero),
"MDEvMDEvMjAwMCAwMDowMDowMCArMDA6MDA=",
};
}
}
Expand Down
Loading