commit | 315d288912b9ec99c59c9a26cfc221681d5c64aa | [log] [tgz] |
---|---|---|
author | QUICHE team <quiche-dev@google.com> | Thu Jul 16 16:02:15 2020 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Jul 16 16:03:03 2020 -0700 |
tree | 1c11c49e1840d0dd5b0df6313188220e6904438b | |
parent | 9946bc08676d6659e7c7848dd0ff2f978c65f9fa [diff] [blame] |
Add missing using declaration or qualification for names in the testing namespace. Googletest is changing its implementation details and can break code that is unnecessarily depending on ADL (go/totw-adl). Tested: TAP --sample ran all affected tests and none failed http://test/OCL:321647132:BASE:321593364:1594935490025:1aa36f7 PiperOrigin-RevId: 321665081 Change-Id: I2be8471949b98734ed8eae928a3a29207a641121
diff --git a/quic/core/http/quic_spdy_stream_test.cc b/quic/core/http/quic_spdy_stream_test.cc index 983ae8c..a8e5230 100644 --- a/quic/core/http/quic_spdy_stream_test.cc +++ b/quic/core/http/quic_spdy_stream_test.cc
@@ -41,6 +41,7 @@ using testing::_; using testing::AnyNumber; using testing::AtLeast; +using testing::DoAll; using testing::ElementsAre; using testing::Invoke; using testing::InvokeWithoutArgs;