@@ -, +, @@ Security.t --- t/db_dependent/Koha/XSLT/Security.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/t/db_dependent/Koha/XSLT/Security.t +++ a/t/db_dependent/Koha/XSLT/Security.t @@ -124,7 +124,7 @@ $engine->print_warns(1); my @warn; local $SIG{__WARN__} = sub { push @warn, $_[0]; }; $output= $engine->transform( "", $xslt_file ); - is( ( grep { /failed to load external/ } @warn ), 1, 'Expected import error' ); + is( ( grep { /failed to load (external entity|HTTP resource)/ } @warn ), 1, 'Expected import error' ); # we saw both messages on Jenkins passing by is( ( grep { /read_net/ } @warn ), 0, 'No read_net warn for remote import' ); } --