2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[5357] Stupid warning removed

This commit is contained in:
Tomek Mrugalski
2017-09-08 23:44:03 +02:00
parent 270aa877bd
commit 953ded7679
2 changed files with 2 additions and 2 deletions

View File

@@ -1328,7 +1328,7 @@ TEST_F(CtrlChannelDhcpv4SrvTest, longResponse) {
while (response.tellp() < long_response_size) {
std::string partial;
const unsigned int timeout = 5;
ASSERT_TRUE(client->getResponse(partial, 5));
ASSERT_TRUE(client->getResponse(partial, timeout));
response << partial;
}

View File

@@ -1349,7 +1349,7 @@ TEST_F(CtrlChannelDhcpv6SrvTest, longResponse) {
while (response.tellp() < long_response_size) {
std::string partial;
const unsigned int timeout = 5;
ASSERT_TRUE(client->getResponse(partial, 5));
ASSERT_TRUE(client->getResponse(partial, timeout));
response << partial;
}