Author: jkeenan
Date: Sun Sep 30 19:32:02 2007
New Revision: 21696
Modified:
branches/reconfigure/t/configure/043-fatal_step.t
Log:
Correct Perl syntax error: commas inside a 'qw' generated a warning; should
have been 'q'.
Modified: branches/reconfigure/t/configure/043-fatal_step.t
==============================================================================
--- branches/reconfigure/t/configure/043-fatal_step.t (original)
+++ branches/reconfigure/t/configure/043-fatal_step.t Sun Sep 30 19:32:02 2007
@@ -18,7 +18,7 @@
my $args = process_options(
{
- argv => [ qw( --fatal-step=init::iota,init::manifest ) ],
+ argv => [ q{--fatal-step=init::iota,init::manifest} ],
mode => q{configure},
}
);