From 02bd52d6752a7f0d7056075bb34185e1bd2b89f6 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 28 Aug 2014 17:25:52 -0400 Subject: [PATCH] Unit Tests - Test was failing to remove the rc file. --- test/bug.1036.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bug.1036.t b/test/bug.1036.t index 0632c9ce8..02f58f549 100755 --- a/test/bug.1036.t +++ b/test/bug.1036.t @@ -58,6 +58,6 @@ $output = qx{../src/task rc:$rc 1 mod /test/Test/ 2>&1}; like ($output, qr/^Modifying task 1 'Test'.$/ms, "$ut: Task with 'until' attribute modified"); # Cleanup. -unlink qw(pending.data completed.data undo.data backlog.data $rc); +unlink qw(pending.data completed.data undo.data backlog.data), $rc; exit 0;