Skip to content

Commit 6ed61b7

Browse files
committed
Fix merge
1 parent fefe6ab commit 6ed61b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2StreamTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
using Microsoft.AspNetCore.InternalTesting;
1212
using Microsoft.AspNetCore.Server.Kestrel.Core.Features;
1313
using Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http2;
14+
using Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure;
1415
using Microsoft.AspNetCore.InternalTesting;
1516
using Microsoft.Extensions.Logging;
1617
using Microsoft.Net.Http.Headers;
@@ -3778,7 +3779,7 @@ await ExpectAsync(Http2FrameType.CONTINUATION,
37783779
withStreamId: 1);
37793780

37803781
await StopConnectionAsync(expectedLastStreamId: 1, ignoreNonGoAwayFrames: true);
3781-
Assert.Equal(nameof(ConnectionEndReason.ErrorWritingHeaders), ConnectionTags[KestrelMetrics.KestrelConnectionEndReason]);
3782+
Assert.Equal(nameof(ConnectionEndReason.TransportCompleted), ConnectionTags[KestrelMetrics.KestrelConnectionEndReason]);
37823783
}
37833784

37843785
[Fact]

0 commit comments

Comments
 (0)