libyang REFACTOR applying deviations, augments, and refines (#1217)
They are no longer applied as part of their
definition module compilation but instead their
target module compilation.
diff --git a/tests/utests/test_context.c b/tests/utests/test_context.c
index ce496e6..42658d7 100644
--- a/tests/utests/test_context.c
+++ b/tests/utests/test_context.c
@@ -344,7 +344,8 @@
/* mod1->parsed is necessary to compile mod2 because of possible groupings, typedefs, ... */
ly_ctx_set_module_imp_clb(ctx, NULL, NULL);
assert_int_equal(LY_ENOTFOUND, lys_create_module(ctx, in, LYS_IN_YANG, 1, NULL, NULL, &mod2));
- logbuf_assert("Unable to reload \"w\" module to import it into \"z\", source data not found.");
+ /*logbuf_assert("Unable to reload \"w\" module to import it into \"z\", source data not found.");*/
+ logbuf_assert("Recompilation of module \"w\" failed.");
assert_null(mod2);
ly_in_free(in, 0);