Unverified Commit e3ac500d authored by Igor [hyperxor]'s avatar Igor [hyperxor] Committed by GitHub

Fix comparison between signed and unsigned integer expressions warning (#713)

parent ab9d10e8
......@@ -404,7 +404,7 @@ TEST(http_server_test, response_size_captured) {
ASSERT_EQ("127.0.0.1", resultData);
std::cout << "Response size is " << rsize << "\n";
ASSERT_GT(rsize, 1);
ASSERT_LT(rsize, 300);
ASSERT_GT(rsize, 1u);
ASSERT_LT(rsize, 300u);
ASSERT_EQ(rcode, Http::Code::Ok);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment