yin parser BUGFIX expect also NULL terminated string from lyxml_get_string
diff --git a/tests/src/test_parser_yin.c b/tests/src/test_parser_yin.c
index f6ed631..e903311 100644
--- a/tests/src/test_parser_yin.c
+++ b/tests/src/test_parser_yin.c
@@ -173,7 +173,7 @@
     st = reset_state(state);
     ret = yin_parse_module(st->ctx,
                            "<module>\
-                           </module>",
+                            </module>",
                            st->mod);
     assert_int_equal(ret, LY_EVALID);
     logbuf_assert("Missing argument name of a module Line number 1.");