summaryrefslogtreecommitdiffstats
path: root/tests/core
diff options
context:
space:
mode:
authorJuan <reduzio@gmail.com>2024-09-23 16:07:40 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-11-11 15:22:42 +0100
commitfe34c45d2af3157ce1dbe65fd8b624851109a02d (patch)
treefbd3716133fea764a8ec9e04a2df0474027aa94f /tests/core
parent0f5f3bc9546b46b2029fc8896dc859697f1eab97 (diff)
downloadredot-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.h2
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);