From 90c77c1f68889a8b95e0ef86d482b86aa6daa9ea Mon Sep 17 00:00:00 2001 From: ze2j <46556066+ze2j@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:48:54 +0200 Subject: [PATCH] Fix compilation failure in test_graph_node.h with disable_exceptions=false --- tests/scene/test_graph_node.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/scene/test_graph_node.h b/tests/scene/test_graph_node.h index bf6cc9be09ed..7973ac14448f 100644 --- a/tests/scene/test_graph_node.h +++ b/tests/scene/test_graph_node.h @@ -48,8 +48,10 @@ TEST_CASE("[GraphNode][SceneTree]") { test_node->add_child(test_child); // Test. - CHECK_NOTHROW_MESSAGE(test_node->remove_child(test_child)); + test_node->remove_child(test_child); + CHECK(test_node->get_child_count(false) == 0); + memdelete(test_child); memdelete(test_node); } }