Skip to content

Commit

Permalink
test: fix coverity warning in test
Browse files Browse the repository at this point in the history
Fix uninitialized pointer field warning in test

Signed-off-by: Michael Dawson <[email protected]>

PR-URL: #43631
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
mhdawson authored and danielleadams committed Jul 26, 2022
1 parent a9ecba2 commit f3fc51c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/cctest/test_inspector_socket_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,11 @@ class ServerHolder {

class TestSocketServerDelegate : public SocketServerDelegate {
public:
explicit TestSocketServerDelegate(
ServerHolder* server,
const std::vector<std::string>& target_ids)
explicit TestSocketServerDelegate(ServerHolder* server,
const std::vector<std::string>& target_ids)
: harness_(server),
targets_(target_ids),
server_(nullptr),
session_id_(0) {}

~TestSocketServerDelegate() override {
Expand Down

0 comments on commit f3fc51c

Please sign in to comment.