From 1e2081a1c554902085df7ecf6d08b6d929b623a1 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 16 Sep 2021 22:24:53 +0900 Subject: [PATCH] Fix integration test error --- integration-tests/nghttpx_http2_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/nghttpx_http2_test.go b/integration-tests/nghttpx_http2_test.go index 84646fa0..c97a45fc 100644 --- a/integration-tests/nghttpx_http2_test.go +++ b/integration-tests/nghttpx_http2_test.go @@ -565,7 +565,7 @@ func TestH2H1BadResponseCL(t *testing.T) { t.Fatalf("Error st.http2() = %v", err) } - want := http2.ErrCodeProtocol + want := http2.ErrCodeInternal if res.errCode != want { t.Errorf("res.errCode = %v; want %v", res.errCode, want) }