Use IETF QPACK error codes on the wire.
gfe-relnote: n/a, change to QUIC v99-only code. Protected by existing disabled gfe2_reloadable_flag_quic_enable_version_99.
PiperOrigin-RevId: 275232371
Change-Id: Id3bd3819b69167e92de6601f0cd146e084b2bee7
diff --git a/quic/core/http/quic_spdy_stream_test.cc b/quic/core/http/quic_spdy_stream_test.cc
index c545265..2db475e 100644
--- a/quic/core/http/quic_spdy_stream_test.cc
+++ b/quic/core/http/quic_spdy_stream_test.cc
@@ -1840,7 +1840,7 @@
EXPECT_CALL(
*connection_,
CloseConnection(
- QUIC_DECOMPRESSION_FAILURE,
+ QUIC_QPACK_DECOMPRESSION_FAILED,
MatchesRegex("Error decompressing header block on stream \\d+: "
"Incomplete header block."),
_))
@@ -1994,7 +1994,7 @@
EXPECT_CALL(
*connection_,
CloseConnection(
- QUIC_DECOMPRESSION_FAILURE,
+ QUIC_QPACK_DECOMPRESSION_FAILED,
MatchesRegex("Error during async decoding of headers on stream \\d+: "
"Required Insert Count too large."),
ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET));
@@ -2055,7 +2055,7 @@
EXPECT_CALL(*connection_,
CloseConnection(
- QUIC_DECOMPRESSION_FAILURE,
+ QUIC_QPACK_DECOMPRESSION_FAILED,
MatchesRegex(
"Error during async decoding of trailers on stream \\d+: "
"Required Insert Count too large."),