From: Francis Dupont Date: Wed, 5 Jul 2017 15:34:12 +0000 (+0200) Subject: [master] Fixed again the Range 0UL in DHCPv6 get-config tests X-Git-Tag: trac5227_base~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfbab8060e5ea513e974cf5657750a6fe1350a29;p=thirdparty%2Fkea.git [master] Fixed again the Range 0UL in DHCPv6 get-config tests --- diff --git a/src/bin/dhcp6/tests/get_config_unittest.cc b/src/bin/dhcp6/tests/get_config_unittest.cc index a6e8955de6..38dc406b5e 100644 --- a/src/bin/dhcp6/tests/get_config_unittest.cc +++ b/src/bin/dhcp6/tests/get_config_unittest.cc @@ -6151,6 +6151,6 @@ TEST_P(Dhcp6GetConfigTest, run) { /// Define the parametrized test loop INSTANTIATE_TEST_CASE_P(Dhcp6GetConfigTest, Dhcp6GetConfigTest, - ::testing::Range(0UL, max_config_counter)); + ::testing::Range(static_cast(0), max_config_counter)); }; diff --git a/src/bin/dhcp6/tests/get_config_unittest.cc.skel b/src/bin/dhcp6/tests/get_config_unittest.cc.skel index d36ce7a05f..b48976d4c8 100644 --- a/src/bin/dhcp6/tests/get_config_unittest.cc.skel +++ b/src/bin/dhcp6/tests/get_config_unittest.cc.skel @@ -343,6 +343,6 @@ TEST_P(Dhcp6GetConfigTest, run) { /// Define the parametrized test loop INSTANTIATE_TEST_CASE_P(Dhcp6GetConfigTest, Dhcp6GetConfigTest, - ::testing::Range(0UL, max_config_counter)); + ::testing::Range(static_cast(0), max_config_counter)); };