Use IsStreamError() and friends gMock matchers in quic/core (but not subdirectories).
gfe-relnote: n/a, test-only change.
PiperOrigin-RevId: 282792467
Change-Id: I827d913c14334b493b46977a827d44e72143fa4e
diff --git a/quic/core/quic_crypto_client_stream_test.cc b/quic/core/quic_crypto_client_stream_test.cc
index 9e957e4..827cb03 100644
--- a/quic/core/quic_crypto_client_stream_test.cc
+++ b/quic/core/quic_crypto_client_stream_test.cc
@@ -389,14 +389,14 @@
// Verify preferred version is the highest version that session supports, and
// is different from connection's version.
QuicVersionLabel client_version_label;
- EXPECT_EQ(QUIC_NO_ERROR,
- session_->sent_crypto_handshake_messages()[0].GetVersionLabel(
- kVER, &client_version_label));
+ EXPECT_THAT(session_->sent_crypto_handshake_messages()[0].GetVersionLabel(
+ kVER, &client_version_label),
+ IsQuicNoError());
EXPECT_EQ(CreateQuicVersionLabel(supported_versions_[0]),
client_version_label);
- EXPECT_EQ(QUIC_NO_ERROR,
- session_->sent_crypto_handshake_messages()[1].GetVersionLabel(
- kVER, &client_version_label));
+ EXPECT_THAT(session_->sent_crypto_handshake_messages()[1].GetVersionLabel(
+ kVER, &client_version_label),
+ IsQuicNoError());
EXPECT_EQ(CreateQuicVersionLabel(supported_versions_[0]),
client_version_label);
EXPECT_NE(CreateQuicVersionLabel(connection_->version()),