Skip to content

Commit 6f90863

Browse files
committed
tests BUGFIX wrong namespace
1 parent ebb107c commit 6f90863

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_nacm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ test_edit_config_update(void **state)
569569
FREE_TEST_VARS(st);
570570

571571
/* Updating an existing node is permited */
572-
data = "<first xmlns=\"ed1\">Alt</first>\n";
572+
data = "<first xmlns=\"urn:ed1\">Alt</first>\n";
573573
SEND_EDIT_RPC(st, data);
574574
ASSERT_OK_REPLY(st);
575575
FREE_TEST_VARS(st);
@@ -788,7 +788,7 @@ setup_test_copy_config_ds2ds_fail_read(void **state)
788788
SR_EDIT(st, data);
789789
FREE_TEST_VARS(st);
790790

791-
data = "<first xmlns=\"ed1\">TestFirst</first>\n";
791+
data = "<first xmlns=\"urn:ed1\">TestFirst</first>\n";
792792
SR_EDIT_SESSION(st, st->sr_sess2, data);
793793
FREE_TEST_VARS(st);
794794

@@ -995,7 +995,7 @@ setup_test_discard_changes(void **state)
995995
FREE_TEST_VARS(st)
996996

997997
/* Merge into candidate */
998-
data = "<first xmlns=\"ed1\">Test</first>";
998+
data = "<first xmlns=\"urn:ed1\">Test</first>";
999999
SR_EDIT_SESSION(st, st->sr_sess2, data);
10001000
FREE_TEST_VARS(st);
10011001
return 0;

0 commit comments

Comments
 (0)