From dfbab8060e5ea513e974cf5657750a6fe1350a29 Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Wed, 5 Jul 2017 17:34:12 +0200 Subject: [PATCH] [master] Fixed again the Range 0UL in DHCPv6 get-config tests --- src/bin/dhcp6/tests/get_config_unittest.cc | 2 +- src/bin/dhcp6/tests/get_config_unittest.cc.skel | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)); }; -- 2.47.2