[fix] loading transliteration module in address_parser_test.c as well

This commit is contained in:
Al
2016-05-25 19:54:01 -04:00
parent 3939dd0ca6
commit 8f1e69960f

View File

@@ -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);