integration: Fix minor typo
This commit is contained in:
parent
daec7c16d3
commit
91151f1f56
|
@ -31,7 +31,7 @@ func TestH1H1PlainGETClose(t *testing.T) {
|
||||||
defer st.Close()
|
defer st.Close()
|
||||||
|
|
||||||
res, err := st.http1(requestParam{
|
res, err := st.http1(requestParam{
|
||||||
name: "TestH1H1PlainGET",
|
name: "TestH1H1PlainGETClose",
|
||||||
header: []hpack.HeaderField{
|
header: []hpack.HeaderField{
|
||||||
pair("Connection", "close"),
|
pair("Connection", "close"),
|
||||||
},
|
},
|
||||||
|
@ -51,7 +51,7 @@ func TestH2H1PlainGET(t *testing.T) {
|
||||||
defer st.Close()
|
defer st.Close()
|
||||||
|
|
||||||
res, err := st.http2(requestParam{
|
res, err := st.http2(requestParam{
|
||||||
name: "TestH2H1PlainGet",
|
name: "TestH2H1PlainGET",
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("Error st.http2() = %v", err)
|
t.Errorf("Error st.http2() = %v", err)
|
||||||
|
|
Loading…
Reference in New Issue