diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-09-08 16:22:07 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-09-09 08:20:05 +0200 |
commit | 7726ed6740e7a51bf73bd6e247c462ef3d67b6f3 (patch) | |
tree | af4782f12ba6a68d9669634538403f721b68e3c1 /tests | |
parent | 8c1817f755b63a69378774d8d0f74499f663afe2 (diff) | |
download | redot-engine-7726ed6740e7a51bf73bd6e247c462ef3d67b6f3.tar.gz |
Fix errors when testing `Resource`
Replaces `get_meta` with `has_meta` for cases where the meta is expected
to be empty.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/io/test_resource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/io/test_resource.h b/tests/core/io/test_resource.h index 8fc2a2f040..9ddb51220b 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<Resource> &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 |