From 85e198c5b481494f056798dd7da8dee00a09d62f Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Thu, 21 May 2020 11:31:06 +0100 Subject: [PATCH] Problem: wrong testcase name in z85_decode_fuzzer Solution: fix it --- tests/test_z85_decode_fuzzer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_z85_decode_fuzzer.cpp b/tests/test_z85_decode_fuzzer.cpp index db37d3ba..01351564 100644 --- a/tests/test_z85_decode_fuzzer.cpp +++ b/tests/test_z85_decode_fuzzer.cpp @@ -58,7 +58,7 @@ extern "C" int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size) } #ifndef ZMQ_USE_FUZZING_ENGINE -void test_bind_null_fuzzer () +void test_z85_decode_fuzzer () { uint8_t **data; size_t *len, num_cases = 0; @@ -82,7 +82,7 @@ int main (int argc, char **argv) setup_test_environment (); UNITY_BEGIN (); - RUN_TEST (test_bind_null_fuzzer); + RUN_TEST (test_z85_decode_fuzzer); return UNITY_END (); }