1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

tests: fix signed/unsigned compare

This commit is contained in:
Steffen Vogel 2019-04-06 18:22:08 +02:00
parent 7a204258ba
commit 614d2787ef

View file

@ -172,7 +172,7 @@ Test(list, basics)
cr_assert_gt(counts, 0);
vlist_remove_all(&l, (void *) 55);
cr_assert_eq(vlist_length(&l), before_len - counts);
cr_assert_eq(vlist_length(&l), (size_t) (before_len - counts));
ret = vlist_contains(&l, (void *) 55);
cr_assert(!ret);