From cd54a4f7559166cd68368ac9068aee117de9e16a Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sun, 26 Oct 2025 09:38:45 +0000 Subject: [PATCH] test: move leftover object tests to ds-test --- {object-test => ds-test}/simple.c | 4 ++-- {object-test => ds-test}/unicode-strings.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename {object-test => ds-test}/simple.c (75%) rename {object-test => ds-test}/unicode-strings.c (95%) diff --git a/object-test/simple.c b/ds-test/simple.c similarity index 75% rename from object-test/simple.c rename to ds-test/simple.c index 59225de..d9db6e1 100644 --- a/object-test/simple.c +++ b/ds-test/simple.c @@ -1,4 +1,4 @@ -#include +#include int main(void) { @@ -6,6 +6,6 @@ int main(void) printf("string object = "); b_object_to_string(string, b_stdout); printf("\n"); - b_release(string); + b_string_unref(string); return 0; } diff --git a/object-test/unicode-strings.c b/ds-test/unicode-strings.c similarity index 95% rename from object-test/unicode-strings.c rename to ds-test/unicode-strings.c index 2aa9e98..933792f 100644 --- a/object-test/unicode-strings.c +++ b/ds-test/unicode-strings.c @@ -1,5 +1,5 @@ #include -#include +#include #include #include