Skip to content

Commit

Permalink
fix up broken unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
neildsh committed Mar 28, 2024
1 parent cf6f04b commit 3065ed1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public async Task QueryConflicts()
ResponseMessage responseMessage = new ResponseMessage(HttpStatusCode.OK)
{
Content = new MemoryStream(Encoding.UTF8.GetBytes(@"{ ""Conflicts"": [{ ""id"": ""Test""}]}"))
};
};
responseMessage.Headers.Add(HttpConstants.HttpHeaders.ItemCount, "1");
return Task.FromResult(responseMessage);
});

Expand Down

0 comments on commit 3065ed1

Please sign in to comment.