From 5d4859c44de9ae34875dd765dd462f8987c614c7 Mon Sep 17 00:00:00 2001 From: Wilhelm Schuermann Date: Tue, 31 Mar 2015 11:28:12 +0200 Subject: [PATCH] Tests: Fix bash_completion.t problem - bash_completion.t rewrites task.sh during setup in order to be able to test it. 704eb1eab3a63fa5df6fcbf91a5eead78f30418d broke that rewrite mechanism. --- test/bash_completion.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bash_completion.t b/test/bash_completion.t index 002d5ab16..2e0590c72 100755 --- a/test/bash_completion.t +++ b/test/bash_completion.t @@ -55,9 +55,9 @@ if (open my $target, '>', 'task.sh') { my $temp=$_; chomp($_); - if ($_ eq "taskcommand='task rc.verbose:nothing'") + if ($_ eq "taskcommand='task rc.verbose:nothing rc.confirmation:no'") { - print $target "taskcommand='../src/task rc.verbose:nothing rc:bug.rc'"; + print $target "taskcommand='../src/task rc.verbose:nothing rc.confirmation:no rc:bug.rc'"; } else {