@@ -, +, @@ --- t/db_dependent/Templates.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/t/db_dependent/Templates.t +++ a/t/db_dependent/Templates.t @@ -88,9 +88,9 @@ subtest 'Testing themelanguage for unique themes (BZ 17982)' => sub { # trigger bad case. $template = $htdocs . '/prog/en/kaboom/about.tt'; ($theme, $lang, $availablethemes) = C4::Templates::themelanguage($htdocs, $template, $section, $cgi); - is($theme,'1',"Expected strange theme: not coded for - $theme"); is($lang,undef,'Expected language: not coded for'); is( $availablethemes, undef, 'We only expect no prog: not coded for' ); + is($theme,undef,"Expected no theme: not coded for"); return; }; --