From dc97348335ba090c319eea4b81b7f1a221404d6b Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 9 Nov 2014 14:53:43 -0500 Subject: [PATCH] Revert "Unit Tests" This reverts commit a00c5b11c87c8607453c3bffc794c27f83e15fe1. --- test/bug.819.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bug.819.t b/test/bug.819.t index 5e3c8e128..320426235 100755 --- a/test/bug.819.t +++ b/test/bug.819.t @@ -46,8 +46,8 @@ if (open my $fh, '>', $rc) # Bug 819: When I run "task add foo\'s bar." the description of the new task is "foo 's bar .". qx{../src/task rc:$rc add foo\\'s bar. 2>&1}; -qx{../src/task rc:$rc add -- foo \\(bar\\) 2>&1}; -qx{../src/task rc:$rc add -- 'baz (qux)' 2>&1}; +qx{../src/task rc:$rc add foo \\(bar\\) 2>&1}; +qx{../src/task rc:$rc add 'baz (qux)' 2>&1}; my $output = qx{../src/task rc:$rc ls 2>&1}; like ($output, qr/foo's bar\./, "$ut: foo's bar. --> preserved");