@@ -410,22 +410,22 @@ test_parse_invalid(void **state)
410410 " </mount-point>"
411411 "</schema-mounts>" );
412412 CHECK_PARSE_LYD_PARAM (xml , LYD_XML , LYD_PARSE_STRICT , LYD_VALIDATE_PRESENT , LY_EVALID , data );
413- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": Mandatory node \"type\" instance does not exist." ,
413+ CHECK_LOG_CTX ("Mandatory node \"type\" instance does not exist." ,
414414 "/ietf-interfaces:interfaces/interface[name='bu']" , 0 );
415415 CHECK_PARSE_LYD_PARAM (json , LYD_JSON , LYD_PARSE_STRICT , LYD_VALIDATE_PRESENT , LY_EVALID , data );
416- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": Mandatory node \"type\" instance does not exist." ,
416+ CHECK_LOG_CTX ("Mandatory node \"type\" instance does not exist." ,
417417 "/ietf-interfaces:interfaces/interface[name='bu']" , 0 );
418418
419419 /* same validation fail in separate validation */
420420 CHECK_PARSE_LYD_PARAM (xml , LYD_XML , LYD_PARSE_STRICT | LYD_PARSE_ONLY , 0 , LY_SUCCESS , data );
421421 assert_int_equal (LY_EVALID , lyd_validate_all (& data , NULL , LYD_VALIDATE_PRESENT , NULL ));
422- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": Mandatory node \"type\" instance does not exist." ,
422+ CHECK_LOG_CTX ("Mandatory node \"type\" instance does not exist." ,
423423 "/ietf-interfaces:interfaces/interface[name='bu']" , 0 );
424424 lyd_free_siblings (data );
425425
426426 CHECK_PARSE_LYD_PARAM (json , LYD_JSON , LYD_PARSE_STRICT | LYD_PARSE_ONLY , 0 , LY_SUCCESS , data );
427427 assert_int_equal (LY_EVALID , lyd_validate_all (& data , NULL , LYD_VALIDATE_PRESENT , NULL ));
428- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": Mandatory node \"type\" instance does not exist." ,
428+ CHECK_LOG_CTX ("Mandatory node \"type\" instance does not exist." ,
429429 "/ietf-interfaces:interfaces/interface[name='bu']" , 0 );
430430 lyd_free_siblings (data );
431431
@@ -1130,8 +1130,7 @@ test_parse_shared_parent_ref(void **state)
11301130 "</root3>\n"
11311131 "<target xmlns=\"urn:sm\">wrong-target-value</target>\n" ;
11321132 CHECK_PARSE_LYD_PARAM (xml , LYD_XML , LYD_PARSE_STRICT , LYD_VALIDATE_PRESENT , LY_EVALID , data );
1133- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": "
1134- "Invalid leafref value \"target-value\" - no target instance \"/sm:target\" with the same value." ,
1133+ CHECK_LOG_CTX ("Invalid leafref value \"target-value\" - no target instance \"/sm:target\" with the same value." ,
11351134 "/ietf-interfaces:interfaces/interface[name='bu']/sm:sm-name" , 0 );
11361135
11371136 json =
@@ -1155,8 +1154,7 @@ test_parse_shared_parent_ref(void **state)
11551154 " \"sm:target\": \"wrong-target-value\"\n"
11561155 "}\n" ;
11571156 CHECK_PARSE_LYD_PARAM (json , LYD_JSON , LYD_PARSE_STRICT , LYD_VALIDATE_PRESENT , LY_EVALID , data );
1158- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": "
1159- "Invalid leafref value \"target-value\" - no target instance \"/sm:target\" with the same value." ,
1157+ CHECK_LOG_CTX ("Invalid leafref value \"target-value\" - no target instance \"/sm:target\" with the same value." ,
11601158 "/ietf-interfaces:interfaces/interface[name='bu']/sm:sm-name" , 0 );
11611159
11621160 /* success */
@@ -1859,8 +1857,7 @@ test_xpath(void **state)
18591857 " </root>\n"
18601858 "</root>\n" ;
18611859 CHECK_PARSE_LYD_PARAM (xml , LYD_XML , LYD_PARSE_STRICT , LYD_VALIDATE_PRESENT , LY_EVALID , data );
1862- CHECK_LOG_CTX ("Ext plugin \"ly2 schema mount\": "
1863- "Must condition \"/m:root/l1 = 'valid'\" not satisfied." ,
1860+ CHECK_LOG_CTX ("Must condition \"/m:root/l1 = 'valid'\" not satisfied." ,
18641861 "/mount:root/l1" , 0 );
18651862
18661863 /* non-existing instance-identifier */
0 commit comments