diff --git a/test/src/fuzzer-parse_stl.cpp b/test/src/fuzzer-parse_stl.cpp index 5253c8a39..0eb6fcdd6 100644 --- a/test/src/fuzzer-parse_stl.cpp +++ b/test/src/fuzzer-parse_stl.cpp @@ -131,12 +131,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) json j1 = json::parse(data, data + size); // parse using vector json j_vec = json::parse(vec); - // parse using deque - json j_deq = json::parse(deq); - // all three must be equal + // both of them must be equal assert(j1 == j_vec); - assert(j1 == j_deq); } catch (const json::parse_error&) {