From 1d80a2ebdc0169a080abfbe95319041a3b7a0c47 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 1 Dec 2009 23:29:01 -0500 Subject: [PATCH] Unit Tests - default.t - The fix to bug #322 means the way default commands are specified is now a little different. If the command "task rc:x" is run, the default command no longer needs to also include "rc:x". --- src/tests/default.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/default.t b/src/tests/default.t index b80e81a0e..d452a5a4e 100755 --- a/src/tests/default.t +++ b/src/tests/default.t @@ -34,7 +34,7 @@ use Test::More tests => 17; if (open my $fh, '>', 'default.rc') { print $fh "data.location=.\n", - "default.command=rc:default.rc list\n", + "default.command=list\n", "default.project=PROJECT\n", "default.priority=M\n"; close $fh;