diff options
Diffstat (limited to 't')
-rw-r--r-- | t/004template.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/004template.t b/t/004template.t index d2f368c9c..31ce7927c 100644 --- a/t/004template.t +++ b/t/004template.t @@ -69,12 +69,12 @@ sub existOnce { foreach my $lang (@languages) { foreach my $file (@referenced_files) { my @path = map(File::Spec->catfile($_, $file), - split(':', $include_path{$lang})); + split(':', $include_path{$lang} . ":" . $include_path{"en"})); if (my $path = existOnce(@path)) { ok(1, "$path exists"); } else { ok(0, "$file cannot be located --ERROR"); - print $fh "Looked in:\n " . join("\n ", @path); + print $fh "Looked in:\n " . join("\n ", @path) . "\n"; } } } |