diff options
author | kobewi <kobewi4e@gmail.com> | 2024-06-05 20:27:21 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-06-05 20:31:42 +0200 |
commit | 5514b2c70c28a6133459075f85746fe05aaecc68 (patch) | |
tree | 7d9754f6f99ba1b59c998b8557f88eeb85250704 /tests/scene/test_node.h | |
parent | 96a386f3c424af96d950ee5098b4b0e4907c9508 (diff) | |
download | redot-engine-5514b2c70c28a6133459075f85746fe05aaecc68.tar.gz |
Use subfolder for temporary test files
Diffstat (limited to 'tests/scene/test_node.h')
-rw-r--r-- | tests/scene/test_node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scene/test_node.h b/tests/scene/test_node.h index 2b14be76e2..93ef3fe728 100644 --- a/tests/scene/test_node.h +++ b/tests/scene/test_node.h @@ -518,7 +518,7 @@ TEST_CASE("[SceneTree][Node]Exported node checks") { ps.instantiate(); ps->pack(node); - String scene_path = OS::get_singleton()->get_cache_path().path_join("test_scene.tscn"); + String scene_path = TestUtils::get_temp_path("test_scene.tscn"); ps->set_path(scene_path); Node *root = memnew(Node); @@ -531,7 +531,7 @@ TEST_CASE("[SceneTree][Node]Exported node checks") { ps2.instantiate(); ps2->pack(root); - scene_path = OS::get_singleton()->get_cache_path().path_join("new_test_scene.tscn"); + scene_path = TestUtils::get_temp_path("new_test_scene.tscn"); ResourceSaver::save(ps2, scene_path); memdelete(root); |