Skip to content

Commit

Permalink
Cleanup query in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Oct 18, 2024
1 parent eb07b1a commit 7327b73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 2 additions & 0 deletions test/query/src/Basic.c
Original file line number Diff line number Diff line change
Expand Up @@ -11358,6 +11358,8 @@ void Basic_entity_iteration_w_match_empty_tables(void) {
test_bool(false, ecs_query_next(&it));
}

ecs_query_fini(q);

ecs_fini(world);
}

Expand Down
7 changes: 1 addition & 6 deletions test/query/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,6 @@ void Basic_entity_iteration_w_match_empty_tables(void);
void Basic_get_cache_query_uncached(void);
void Basic_get_cache_query_cached(void);
void Basic_get_cache_query_partially_cached(void);
void Basic_written_pair_any_any_record(void);

// Testsuite 'Combinations'
void Combinations_setup(void);
Expand Down Expand Up @@ -4808,10 +4807,6 @@ bake_test_case Basic_testcases[] = {
{
"get_cache_query_partially_cached",
Basic_get_cache_query_partially_cached
},
{
"written_pair_any_any_record",
Basic_written_pair_any_any_record
}
};

Expand Down Expand Up @@ -10442,7 +10437,7 @@ static bake_test_suite suites[] = {
"Basic",
Basic_setup,
NULL,
231,
230,
Basic_testcases,
1,
Basic_params
Expand Down

0 comments on commit 7327b73

Please sign in to comment.