️ reset ``chaos`` to False

This commit is contained in:
WenceslasSANCHEZ 2023-08-01 21:46:16 +02:00
parent bd34c6560c
commit 872e404bce
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def uint_case_fn(rng: Random, mode: RandomizationMode, typ: Type[BasicView]):
return get_random_ssz_object(rng, typ,
max_bytes_length=typ.type_byte_length(),
max_list_length=1,
mode=mode, chaos=True)
mode=mode, chaos=False)
UINT_TYPES = [uint8, uint16, uint32, uint64, uint128, uint256]