Update list tests

This commit is contained in:
Gregory Lirent 2022-06-05 19:49:48 +03:00
parent aa44980abd
commit 96b06906f8
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ int main(int argc, char** argv) {
list_init(&x);
for (int i = 0, c = random_uint8()%16; i < 12; ++i) {
for (int i = 0, c = random_uint8()%12; i < 12; ++i) {
if (i == c) {
list_push_back(&x, 0);
} else list_push_random(&x, random_boolean());