aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_node.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-06-21 18:19:48 +0200
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit89acd9d099bd46c1cbf17ee3a7bb78610a8138fe (patch)
tree514ed1fa92b78021498cd4373ea543dec3e1603c /test/test_node.c
parent098b744bafe57d95bba844190d9a6f1a9db33d4c (diff)
downloadserd-89acd9d099bd46c1cbf17ee3a7bb78610a8138fe.tar.gz
serd-89acd9d099bd46c1cbf17ee3a7bb78610a8138fe.tar.bz2
serd-89acd9d099bd46c1cbf17ee3a7bb78610a8138fe.zip
Add serd_node_from_syntax() and serd_node_to_syntax()
Diffstat (limited to 'test/test_node.c')
-rw-r--r--test/test_node.c4
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();