Resolved bug in kMaxValue in SerializationTest for toml_fuzzer (#215)

This commit is contained in:
Bailey Capuano 2023-11-23 02:10:55 -05:00 committed by GitHub
parent b19649478c
commit d8fa9a1fdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ enum class SerializationTest
JSON,
YAML,
TOML,
kMaxValue = YAML
kMaxValue = TOML
};
extern "C" int LLVMFuzzerTestOneInput(const std::uint8_t* data, const std::size_t size)