Update TODO statuses

This commit is contained in:
2022-11-15 00:15:48 -05:00
parent af88471b3a
commit 583367ee9d
9 changed files with 27 additions and 23 deletions

View File

@@ -34,11 +34,10 @@ void setUp(void) {
}
void tearDown(void) {
// TODO: Implement GC so we can clean these both up
//ucl_object_delete(input);
input = NULL;
ucl_scope_delete(scope);
ucl_gc();
input = NULL;
response = NULL;
scope = NULL;
}

View File

@@ -13,7 +13,8 @@ void setUp(void) {
}
void tearDown(void) {
ucl_object_delete(response);
ucl_gc();
response = NULL;
}
static void test_token_next_empty_str(void) {

View File

@@ -18,6 +18,7 @@ void setUp(void) {
void tearDown(void) {
ucl_scope_delete(scope);
ucl_gc();
scope = NULL;
}

View File

@@ -17,10 +17,9 @@ void setUp(void) {
}
void tearDown(void) {
// TODO: Implement GC so we can clean these both up
//ucl_object_delete(input);
ucl_gc();
input = NULL;
ucl_object_delete(response);
response = NULL;
}