Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 9ec8bf0

Browse files
author
Cesar Blum Silveira
committed
PR feedback.
1 parent 1a3637b commit 9ec8bf0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Microsoft.AspNetCore.Server.KestrelTests/EngineTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ public async Task ConnectionClosedAfter101Response(TestServiceContext testContex
591591
{
592592
using (var connection = server.CreateConnection())
593593
{
594-
await connection.SendEnd(
594+
await connection.Send(
595595
"GET / HTTP/1.1",
596596
"",
597597
"");
@@ -605,9 +605,9 @@ await connection.ReceiveEnd(
605605

606606
using (var connection = server.CreateConnection())
607607
{
608-
await connection.SendEnd(
608+
await connection.Send(
609609
"GET / HTTP/1.0",
610-
"Connection: kee-alive",
610+
"Connection: keep-alive",
611611
"",
612612
"");
613613
await connection.ReceiveEnd(

0 commit comments

Comments
 (0)