Skip to content

Commit 95610cc

Browse files
fix small compile warning in test_network_requests_buffer.cc
1 parent 71f5b1c commit 95610cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/cctest/inspector/test_network_requests_buffer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ TEST(RequestsBuffer, EnforceLimit) {
168168
buffer.find("4")->second.push_request_data_blob(
169169
protocol::Binary::fromSpan(kDummyData, 10));
170170
// "3" and "4" are kept.
171-
EXPECT_EQ(buffer.total_buffer_size(), 15);
171+
EXPECT_EQ(buffer.total_buffer_size(), 15u);
172172
}
173173

174174
EXPECT_FALSE(buffer.contains("1"));

0 commit comments

Comments
 (0)