From 4ff9550580dcc0c321bc49c45960f2ecb4d64787 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 27 May 2014 00:45:28 -0400 Subject: [PATCH] Unit Tests - Removed unnecessary quotes. --- test/uda_string.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/uda_string.t b/test/uda_string.t index 606c1e680..35ba4ce31 100755 --- a/test/uda_string.t +++ b/test/uda_string.t @@ -49,7 +49,7 @@ if (open my $fh, '>', 'uda.rc') } # Add tasks with and without the UDA. -qx{../src/task rc:uda.rc add with extra:\\"one two\\" 2>&1}; +qx{../src/task rc:uda.rc add with extra:"one two" 2>&1}; qx{../src/task rc:uda.rc add without 2>&1}; my $output = qx{../src/task rc:uda.rc uda 2>&1}; like ($output, qr/1\s+one two\s+with/, 'UDA string stored');