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:
parent
7a204258ba
commit
614d2787ef
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue