FuzzyGenerator: return bytes for data (#28932)

generate bytes
old-commit-hash: 77339af1c057b1ed5aa7d36316ac6b3166f302d6
This commit is contained in:
Shane Smiskol
2023-07-13 23:43:08 -07:00
committed by GitHub
parent f00b0693f6
commit 70255e2f19
+1 -1
View File
@@ -38,7 +38,7 @@ class FuzzyGenerator:
elif field == 'text':
return st.text(max_size=1000)
elif field == 'data':
return st.text(max_size=1000)
return st.binary(max_size=1000)
elif field == 'anyPointer':
return st.text()
else: