aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@shlomifish.org>2013-11-26 22:10:08 +0200
committerShlomi Fish <shlomif@shlomifish.org>2013-11-26 22:10:08 +0200
commita57625e6069be36650ebe483e4cc980d975aad7b (patch)
treef3bbbd6883e482e4b3123591945a4cb90faf26ac
parentdd89d53d1f5a4f9c7ac3d9d661fe999bbae86383 (diff)
downloadspec-helper-a57625e6069be36650ebe483e4cc980d975aad7b.tar
spec-helper-a57625e6069be36650ebe483e4cc980d975aad7b.tar.gz
spec-helper-a57625e6069be36650ebe483e4cc980d975aad7b.tar.bz2
spec-helper-a57625e6069be36650ebe483e4cc980d975aad7b.tar.xz
spec-helper-a57625e6069be36650ebe483e4cc980d975aad7b.zip
Wrap foreach list in (...).
This was required to fix the syntax.
-rwxr-xr-xt/run.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/run.t b/t/run.t
index 40d6c4d..fa435aa 100755
--- a/t/run.t
+++ b/t/run.t
@@ -12,7 +12,7 @@ use File::Temp qw/tempdir/;
my ($out, $err);
delete $ENV{RPM_BUILD_ROOT};
-foreach my $prog qw/clean_files compress_files relink_symlinks gprintify translate_menu remove_info_dir fix_pamd fix_eol check_elf_files/ {
+foreach my $prog (qw/clean_files compress_files relink_symlinks gprintify translate_menu remove_info_dir fix_pamd fix_eol check_elf_files/) {
($out, $err) = run_prog($prog);
is( $out, '', "$prog stdin without buildroot" );