From 0ead416574e663520c99deb5d03add978090d7b8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 13 Aug 2011 23:58:28 -0400 Subject: [PATCH] Unit Test - bug.495.t - Modified the test to reflect the new handling of -- on the command line with respect to quoted text. --- test/bug.495.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bug.495.t b/test/bug.495.t index e955d98b9..8caa5df87 100755 --- a/test/bug.495.t +++ b/test/bug.495.t @@ -43,7 +43,7 @@ if (open my $fh, '>', 'bug.rc') qx{../src/task rc:bug.rc add foo}; qx{../src/task rc:bug.rc 1 annotate "This -- is -- a -- test"}; my $output = qx{../src/task rc:bug.rc list}; -like ($output, qr/This -- is -- a -- test/, 'Double hyphens preserved.'); +like ($output, qr/This is -- a -- test/, 'Double hyphens preserved, except the first ones.'); # Cleanup. unlink 'pending.data';