diff --git a/src/address_parser_test.c b/src/address_parser_test.c index 57776381..8fb0fe01 100644 --- a/src/address_parser_test.c +++ b/src/address_parser_test.c @@ -142,6 +142,14 @@ int main(int argc, char **argv) { log_info("address dictionary module loaded\n"); + // Needs to load for normalization + if (!transliteration_module_setup(NULL)) { + log_error("Could not load transliteration module\n"); + exit(EXIT_FAILURE); + } + + log_info("transliteration module loaded\n"); + if (!geodb_module_setup(NULL)) { log_error("Could not load geodb dictionaries\n"); exit(EXIT_FAILURE);