diff --git a/test/bug.879.t b/test/bug.879.t index c9cbb0866..88c167801 100755 --- a/test/bug.879.t +++ b/test/bug.879.t @@ -27,7 +27,7 @@ use strict; use warnings; -use Test::More tests => 6; +use Test::More tests => 3; # Ensure environment has no influence. delete $ENV{'TASKDATA'}; @@ -54,12 +54,6 @@ $output = qx{../src/task rc:$rc long 2>&1}; like ($output, qr/one\\/, "$ut: Backslash preserved in description"); like ($output, qr/foo\\/, "$ut: Backslash preserved in annotation 1"); -qx{../src/task rc:$rc 1 annotate bar\\\\ 2>&1}; -$output = qx{../src/task rc:$rc long 2>&1}; -like ($output, qr/one\\/, "$ut: Backslash preserved in description"); -like ($output, qr/foo\\/, "$ut: Backslash preserved in annotation 1"); -like ($output, qr/bar\\/, "$ut: Backslash preserved in annotation 2"); - # Cleanup. unlink qw(pending.data completed.data undo.data backlog.data), $rc; exit 0;