From 7726ed6740e7a51bf73bd6e247c462ef3d67b6f3 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:22:07 +0200 Subject: [PATCH] Fix errors when testing `Resource` Replaces `get_meta` with `has_meta` for cases where the meta is expected to be empty. --- tests/core/io/test_resource.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/io/test_resource.h b/tests/core/io/test_resource.h index 8fc2a2f040f..9ddb51220b1 100644 --- a/tests/core/io/test_resource.h +++ b/tests/core/io/test_resource.h @@ -139,7 +139,7 @@ TEST_CASE("[Resource] Breaking circular references on save") { loaded_resource_c_binary->get_name() == "C", "The loaded child resource name should be equal to the expected value."); CHECK_MESSAGE( - !loaded_resource_c_binary->get_meta("next"), + !loaded_resource_c_binary->has_meta("next"), "The loaded child resource circular reference should be NULL."); const Ref &loaded_resource_a_text = ResourceLoader::load(save_path_text); @@ -155,7 +155,7 @@ TEST_CASE("[Resource] Breaking circular references on save") { loaded_resource_c_text->get_name() == "C", "The loaded child resource name should be equal to the expected value."); CHECK_MESSAGE( - !loaded_resource_c_text->get_meta("next"), + !loaded_resource_c_text->has_meta("next"), "The loaded child resource circular reference should be NULL."); // Break circular reference to avoid memory leak