libyang REFACTOR rename sized array size to count
... because it reflects the fact that it may not
always (internally) be the size of the array.
diff --git a/tests/utests/schema/test_schema_common.c b/tests/utests/schema/test_schema_common.c
index 1623905..ebcdaec 100644
--- a/tests/utests/schema/test_schema_common.c
+++ b/tests/utests/schema/test_schema_common.c
@@ -194,7 +194,7 @@
LY_ARRAY_NEW_RET(NULL, revs, rev,);
strcpy(rev->date, "2018-12-31");
- assert_int_equal(2, LY_ARRAY_SIZE(revs));
+ assert_int_equal(2, LY_ARRAY_COUNT(revs));
assert_string_equal("2018-01-01", &revs[0]);
assert_string_equal("2018-12-31", &revs[1]);
/* the order should be fixed, so the newest revision will be the first in the array */