aboutsummaryrefslogtreecommitdiffstats
path: root/feature-tests
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-02-19 17:09:16 +0000
committerTom Feist <shabble@metavore.org>2011-02-19 17:09:16 +0000
commit652e5cbb57bde8a1adc3c44f9c2819b3823090f7 (patch)
tree7b7466ef53a673813aa401146abdac2e088804f0 /feature-tests
parentadded program args to Wheel::Run (diff)
downloadirssi-scripts-652e5cbb57bde8a1adc3c44f9c2819b3823090f7.tar.gz
irssi-scripts-652e5cbb57bde8a1adc3c44f9c2819b3823090f7.zip
fix for program args: make it a reference
Diffstat (limited to 'feature-tests')
-rwxr-xr-xfeature-tests/auto-testing.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/feature-tests/auto-testing.pl b/feature-tests/auto-testing.pl
index c7d9178..61e460c 100755
--- a/feature-tests/auto-testing.pl
+++ b/feature-tests/auto-testing.pl
@@ -107,7 +107,7 @@ sub handle_start {
# Start the asynchronous child process.
$heap->{program} = POE::Wheel::Run->new(
Program => PROGRAM,
- ProgramArgs => qw/--noconnect/,
+ ProgramArgs => [qw/--noconnect/],
Conduit => "pty",
StdoutEvent => "got_child_stdout",
StdioFilter => POE::Filter::Stream->new(),