tree schema UPDATE check for namespace collisions
diff --git a/tests/utests/schema/test_schema_common.c b/tests/utests/schema/test_schema_common.c
index 97af0fb..f66deb2 100644
--- a/tests/utests/schema/test_schema_common.c
+++ b/tests/utests/schema/test_schema_common.c
@@ -599,8 +599,8 @@
/* config -> state leafref */
str = "module b {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:b;\n"
+ " prefix b;\n"
" container cont {\n"
" config false;\n"
" leaf l {\n"
@@ -621,8 +621,8 @@
/* config -> state must */
str = "module b {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:b;\n"
+ " prefix b;\n"
" container cont {\n"
" config false;\n"
" leaf l {\n"
@@ -642,8 +642,8 @@
/* state -> config */
str = "module c {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:c;\n"
+ " prefix c;\n"
" container cont {\n"
" leaf l {\n"
" type empty;\n"
@@ -664,8 +664,8 @@
/* notif -> state */
str = "module d {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:d;\n"
+ " prefix d;\n"
" container cont {\n"
" config false;\n"
" leaf l {\n"
@@ -686,8 +686,8 @@
/* notif -> notif */
str = "module e {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:e;\n"
+ " prefix e;\n"
" notification notif {\n"
" leaf l {\n"
" type empty;\n"
@@ -705,8 +705,8 @@
/* rpc input -> state */
str = "module f {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:f;\n"
+ " prefix f;\n"
" container cont {\n"
" config false;\n"
" leaf l {\n"
@@ -729,8 +729,8 @@
/* rpc input -> rpc input */
str = "module g {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:g;\n"
+ " prefix g;\n"
" rpc rp {\n"
" input {\n"
" leaf l {\n"
@@ -750,8 +750,8 @@
/* rpc input -> rpc output leafref */
str = "module h {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:h;\n"
+ " prefix h;\n"
" rpc rp {\n"
" input {\n"
" leaf l2 {\n"
@@ -772,8 +772,8 @@
/* rpc input -> rpc output must */
str = "module h {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:h;\n"
+ " prefix h;\n"
" rpc rp {\n"
" input {\n"
" leaf l2 {\n"
@@ -793,8 +793,8 @@
/* rpc input -> notif leafref */
str = "module i {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:i;\n"
+ " prefix i;\n"
" rpc rp {\n"
" input {\n"
" leaf l2 {\n"
@@ -815,8 +815,8 @@
/* rpc input -> notif must */
str = "module i {\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:i;\n"
+ " prefix i;\n"
" rpc rp {\n"
" input {\n"
" leaf l2 {\n"
@@ -838,8 +838,8 @@
/* action output -> state */
str = "module j {\n"
" yang-version 1.1;\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:j;\n"
+ " prefix j;\n"
" container cont {\n"
" list ll {\n"
" key k;\n"
@@ -869,8 +869,8 @@
/* action output -> action input leafref */
str = "module k {\n"
" yang-version 1.1;\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:k;\n"
+ " prefix k;\n"
" container cont {\n"
" list ll {\n"
" key k;\n"
@@ -900,8 +900,8 @@
/* action output -> action input must */
str = "module k {\n"
" yang-version 1.1;\n"
- " namespace urn:a;\n"
- " prefix a;\n"
+ " namespace urn:k;\n"
+ " prefix k;\n"
" container cont {\n"
" list ll {\n"
" key k;\n"