Skip to content

Commit 656ba86

Browse files
Eugene Ostroukhovitaloacasas
Eugene Ostroukhov
authored andcommittedJan 27, 2017
test: fix Coverity warning in inspector test
PR-URL: #10510 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent e7b656d commit 656ba86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/cctest/test_inspector_socket_server.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Timeout {
7070
class InspectorSocketServerTest : public ::testing::Test {
7171
protected:
7272
void SetUp() override {
73-
uv_loop_init(&loop);
73+
EXPECT_EQ(0, uv_loop_init(&loop));
7474
}
7575

7676
void TearDown() override {

0 commit comments

Comments
 (0)
Please sign in to comment.