diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-10 10:55:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-10 10:55:25 +0000 |
commit | b9785fd291f1cdc22eab45f0cf8a15171f9b8ab2 (patch) | |
tree | 932a2b60851556fcbcf72ae34f9b3cef1e93d7da /t | |
parent | a4414083af1dfaf255631f228d2d4f8705fb0088 (diff) | |
download | perl-URPM-b9785fd291f1cdc22eab45f0cf8a15171f9b8ab2.tar perl-URPM-b9785fd291f1cdc22eab45f0cf8a15171f9b8ab2.tar.gz perl-URPM-b9785fd291f1cdc22eab45f0cf8a15171f9b8ab2.tar.bz2 perl-URPM-b9785fd291f1cdc22eab45f0cf8a15171f9b8ab2.tar.xz perl-URPM-b9785fd291f1cdc22eab45f0cf8a15171f9b8ab2.zip |
fix warning
Diffstat (limited to 't')
-rw-r--r-- | t/synthesis.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/synthesis.t b/t/synthesis.t index 4d9d79b..a772fa0 100644 --- a/t/synthesis.t +++ b/t/synthesis.t @@ -19,7 +19,7 @@ EOF open my $f, "| gzip -9 >$file1"; print $f $s; close $f; -open my $f, "| xz -9 >$file2"; +open $f, "| xz -9 >$file2"; print $f $s; $s =~ s/-devel//g; print $f $s; |