aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/base/test/test-vector.cc
diff options
context:
space:
mode:
Diffstat (limited to 'hicn-light/src/hicn/base/test/test-vector.cc')
-rw-r--r--hicn-light/src/hicn/base/test/test-vector.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/hicn-light/src/hicn/base/test/test-vector.cc b/hicn-light/src/hicn/base/test/test-vector.cc
index 59571b053..aaec7a92c 100644
--- a/hicn-light/src/hicn/base/test/test-vector.cc
+++ b/hicn-light/src/hicn/base/test/test-vector.cc
@@ -49,15 +49,15 @@ TEST_F(VectorTest, VectorAllocate)
vector_init(vector, DEFAULT_SIZE, 0);
/* Allocated size should be the next power of two */
- EXPECT_EQ(vector_get_alloc_size(vector), 16);
+ EXPECT_EQ(vector_get_alloc_size(vector), 16UL);
/* Setting elements within the allocated size should not trigger a resize */
vector_ensure_pos(vector, 15);
- EXPECT_EQ(vector_get_alloc_size(vector), 16);
+ EXPECT_EQ(vector_get_alloc_size(vector), 16UL);
/* Setting elements after should through */
vector_ensure_pos(vector, 16);
- EXPECT_EQ(vector_get_alloc_size(vector), 32);
+ EXPECT_EQ(vector_get_alloc_size(vector), 32UL);
/* Check that free indices and bitmaps are correctly updated */