mirror of https://github.com/google/oss-fuzz.git
validators: fix build (#9779)
Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=56185
This commit is contained in:
parent
09e0afce9c
commit
9b661d95ff
|
@ -58,8 +58,8 @@ def TestOneInput(data):
|
|||
|
||||
try:
|
||||
validators.length(fdp.ConsumeUnicodeNoSurrogates(sys.maxsize),
|
||||
fdp.ConsumeIntInRange(1, 100),
|
||||
fdp.ConsumeIntInRange(1, 100))
|
||||
min_val = fdp.ConsumeIntInRange(1, 100),
|
||||
max_val = fdp.ConsumeIntInRange(1, 100))
|
||||
except validators.ValidationFailure:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in New Issue