]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] Fixed again the Range 0UL in DHCPv6 get-config tests
authorFrancis Dupont <fdupont@isc.org>
Wed, 5 Jul 2017 15:34:12 +0000 (17:34 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 5 Jul 2017 15:34:12 +0000 (17:34 +0200)
src/bin/dhcp6/tests/get_config_unittest.cc
src/bin/dhcp6/tests/get_config_unittest.cc.skel

index a6e8955de6e164b8db011bcac30c2fff941c4925..38dc406b5eae39a11c854a83a7264fa9fb2cca74 100644 (file)
@@ -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<size_t>(0), max_config_counter));
 
 };
index d36ce7a05fceaad5de1ebd653c0abc795fd52d7d..b48976d4c8c54037a917ff545789695c81fab034 100644 (file)
@@ -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<size_t>(0), max_config_counter));
 
 };