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 d38d0a4 commit 69daaf6Copy full SHA for 69daaf6
test/HeaderPropagationIntegrationTest.cs
@@ -41,8 +41,8 @@ public async Task HeaderPropagation_WithoutMiddleware_Throws()
41
{
42
try
43
44
- var c = context.RequestServices.GetRequiredService<IHttpClientFactory>().CreateClient("test");
45
- await c.GetAsync("http://localhost/"); // will throw
+ var client = context.RequestServices.GetRequiredService<IHttpClientFactory>().CreateClient("test");
+ await client.GetAsync("http://localhost/"); // will throw
46
}
47
catch (Exception ex)
48
0 commit comments