fuzz REFACTOR remove unnecessary string.h header from lyd_parse_mem harness
diff --git a/tests/fuzz/lyd_parse_mem.c b/tests/fuzz/lyd_parse_mem.c
index fb1ce13..cd4be88 100644
--- a/tests/fuzz/lyd_parse_mem.c
+++ b/tests/fuzz/lyd_parse_mem.c
@@ -1,7 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
-#include <string.h>
#include "libyang.h"
@@ -75,7 +74,7 @@
memcpy(data, buf, len);
data[len] = 0;
- lyd_parse_data_mem(ctx, data, LYD_XML, 0, LYD_VALIDATE_PRESENT, &tree);
+ lyd_parse_data_mem(ctx, data, LYD_JSON, 0, LYD_VALIDATE_PRESENT, &tree);
ly_ctx_destroy(ctx, NULL);
free(data);