Skip to content

Commit

Permalink
testing: add missing using statement (envoyproxy#5085)
Browse files Browse the repository at this point in the history
Without this change, the code is relying on ADL to correctly resolve
DoAll as ::testing::DoAll. Adding the extra using declaration
prevents problems if the Googletest library changes its implementation.

Risk Level: low
Testing: ran affected tests

Signed-off-by: Alex Konradi <akonradi@google.com>
  • Loading branch information
akonradi authored and htuch committed Nov 19, 2018
1 parent 6c2c7b5 commit 3fa5e4f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/common/ssl/ssl_socket_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include "openssl/ssl.h"

using testing::_;
using testing::DoAll;
using testing::Invoke;
using testing::NiceMock;
using testing::Return;
Expand Down

0 comments on commit 3fa5e4f

Please sign in to comment.