Update tests base

This commit is contained in:
2022-06-02 21:48:56 +03:00
parent 2e308f1a72
commit ddca5c14cc
+1 -1
View File
@@ -68,7 +68,7 @@ vtype_uint16 random_uint16() {
}
vtype_uint32 random_uint32() {
return rand() << 1 | rand()&1;
return (rand()<<1) | (rand()&1);
}
vtype_uint64 random_uint64() {