diff options
author | Juan <reduzio@gmail.com> | 2024-09-23 16:07:40 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-11-11 15:22:42 +0100 |
commit | fe34c45d2af3157ce1dbe65fd8b624851109a02d (patch) | |
tree | fbd3716133fea764a8ec9e04a2df0474027aa94f /tests/core | |
parent | 0f5f3bc9546b46b2029fc8896dc859697f1eab97 (diff) | |
download | redot-engine-fe34c45d2af3157ce1dbe65fd8b624851109a02d.tar.gz |
Allow passing UID to importer
This helps, for importers spitting out new resources to the res://
filesystem to actually hash them to generate deterministic UIDs.
This PR also fixes the determinism for translations.
Diffstat (limited to 'tests/core')
-rw-r--r-- | tests/core/string/test_translation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/string/test_translation.h b/tests/core/string/test_translation.h index 7c389191e3..2b1069d40c 100644 --- a/tests/core/string/test_translation.h +++ b/tests/core/string/test_translation.h @@ -161,7 +161,7 @@ TEST_CASE("[TranslationCSV] CSV import") { List<String> gen_files; - Error result = import_csv_translation->import(TestUtils::get_data_path("translations.csv"), + Error result = import_csv_translation->import(0, TestUtils::get_data_path("translations.csv"), "", options, nullptr, &gen_files); CHECK(result == OK); CHECK(gen_files.size() == 4); |