We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583f6b1 commit 306db9fCopy full SHA for 306db9f
src/Microsoft.Health.Fhir.Azure.UnitTests/Api/SearchPostReroutingMiddlewareTests.cs
@@ -8,6 +8,7 @@
8
using System.Net.Http;
9
using System.Threading.Tasks;
10
using Microsoft.AspNetCore.Http;
11
+using Microsoft.Extensions.Logging.Abstractions;
12
using Microsoft.Health.Fhir.Api;
13
using Microsoft.Health.Fhir.Api.Features.Routing;
14
using Microsoft.Health.Fhir.Tests.Common;
@@ -30,7 +31,7 @@ public SearchPostReroutingMiddlewareTests()
30
31
{
32
_httpContext = new DefaultHttpContext();
33
_requestDelegate = Substitute.For<RequestDelegate>();
- _middleware = new SearchPostReroutingMiddleware(_requestDelegate);
34
+ _middleware = new SearchPostReroutingMiddleware(_requestDelegate, new NullLogger<SearchPostReroutingMiddleware>());
35
}
36
37
[Theory]
0 commit comments