diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-31 17:32:47 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-31 22:52:46 +0100 |
commit | a92a2db61b4eed5d3871340c2985ccbc15aac4ae (patch) | |
tree | dec12aad9cb891803f716ae602fde4ec6c48041d | |
parent | bf3417815e57d71e307b7b1d65ebfdaa46162f92 (diff) | |
download | sbotools2-a92a2db61b4eed5d3871340c2985ccbc15aac4ae.tar.xz |
We escaped too much. Only escape what's needed.
-rwxr-xr-x | t/fail.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ script (qw/ sboinstall malformed-readme /, { expected => "A fatal script error h # 13: Malformed slackbuild - no .SlackBuild script (qw/ sboinstall malformed-slackbuild /, - { input => "y\ny", expected => qr!\QFailures:\n malformed-slackbuild: Unable to backup $RealBin/LO-fail/malformed-slackbuild/malformed-slackbuild.SlackBuild to $RealBin/LO-fail/malformed-slackbuild/malformed-slackbuild.SlackBuild.orig\E!, exit => 6 }); + { input => "y\ny", expected => qr!Failures:\n malformed-slackbuild: Unable to backup \Q$RealBin/LO-fail/malformed-slackbuild/malformed-slackbuild.SlackBuild to $RealBin/LO-fail/malformed-slackbuild/malformed-slackbuild.SlackBuild.orig\E!, exit => 6 }); # Cleanup END { |