Fixed unit test to new piler id

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2020-12-04 16:42:35 +01:00
parent d2f3f018c0
commit 33ce44dea5

View File

@ -112,7 +112,7 @@ static void test_create_id(){
for(i=0; i<10; i++){ for(i=0; i<10; i++){
create_id(buf, 0xf); create_id(buf, 0xf);
ASSERT(strncmp(buf, "40000000", strlen("40000000")) == 0, buf); ASSERT(strncmp(buf, "50000000", strlen("50000000")) == 0, buf);
ASSERT(buf[24] == '0' && buf[25] == 'f', buf); ASSERT(buf[24] == '0' && buf[25] == 'f', buf);
} }