@@ -, +, @@ - Run $ prove xt/tt_valid.t at xt/tt_valid.t line 8 - Apply the patch - Run $ prove xt/tt_valid.t --- xt/tt_valid.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/xt/tt_valid.t +++ a/xt/tt_valid.t @@ -28,7 +28,7 @@ my @themes; # OPAC themes my $opac_dir = 'koha-tmpl/opac-tmpl'; opendir ( my $dh, $opac_dir ) or die "can't opendir $opac_dir: $!"; -for my $theme ( grep { not /^\.|lib|js/ } readdir($dh) ) { +for my $theme ( grep { not /^\.|lib|js|xslt/ } readdir($dh) ) { push @themes, "$opac_dir/$theme/en"; } close $dh; --