diff options
Diffstat (limited to 'test/test_node.c')
-rw-r--r-- | test/test_node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_node.c b/test/test_node.c index 6b159007..c1b83140 100644 --- a/test/test_node.c +++ b/test/test_node.c @@ -632,7 +632,7 @@ test_node_equals(void) } static void -test_node_from_string(void) +test_node_from_syntax(void) { SerdNode* const hello = serd_node_new(NULL, serd_a_string("hello\"")); assert(serd_node_length(hello) == 6); @@ -826,7 +826,7 @@ main(void) test_base64(); test_decode(); test_node_equals(); - test_node_from_string(); + test_node_from_syntax(); test_node_from_substring(); test_literal(); test_blank(); |