From d787e1b9696636b5b753753d46beb28f45b997d8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 27 Jun 2014 19:11:02 -0400 Subject: [PATCH] Unit Test - Removed character (!) from task project name that was causing a _neg_ operator to be invoked. --- test/bug.455.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bug.455.t b/test/bug.455.t index b1cf7a71e..319a95af6 100755 --- a/test/bug.455.t +++ b/test/bug.455.t @@ -49,13 +49,13 @@ if (open my $fh, '>', $rc) # characters qx{../src/task rc:$rc add abc pro:Bar\x{263A} 2>&1}; -qx{../src/task rc:$rc add def pro:Foo! 2>&1}; +qx{../src/task rc:$rc add def pro:Foo 2>&1}; my $output = qx{../src/task rc:$rc ls 2>&1}; # Project + ' ' == 4 like ($output, qr/\S\s{4}abc/ms, "$ut: correct spacing in utf8 task"); -like ($output, qr/\S\s{4}def/ms, "$ut: correct spacing in non utf8 task"); +like ($output, qr/\S\s{5}def/ms, "$ut: correct spacing in non utf8 task"); # Cleanup. unlink qw(pending.data completed.data undo.data backlog.data), $rc;