Skip to content

Commit 3196fae

Browse files
author
Eugene Ostroukhov
committed
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 7c77932 commit 3196fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/cctest/test_inspector_socket_server.cc

Lines changed: 1 addition & 1 deletion
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)