From 4ffde4cd97c6cd4f941d485ee7381621f3a38fe2 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 22 Oct 2016 18:39:12 +0100 Subject: [PATCH] Fix test --- t/musicexpo-cache.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/musicexpo-cache.t b/t/musicexpo-cache.t index b703b7a..6ed3046 100644 --- a/t/musicexpo-cache.t +++ b/t/musicexpo-cache.t @@ -35,7 +35,7 @@ push @lines, $prefix . 'Opus ' if $handled{'.op push @lines, $prefix . 'MP3 ' if $handled{'.mp3'}; push @lines, 'L'autre endroitElectro1/92005AAC ' if $handled{'.aac'}; -my $contents = join "\n", @lines; +my $contents = join '', map { "\n$_" } @lines; App::MusicExpo->run; -- 2.30.2