diff options
| author | Tom Feist <shabble@metavore.org> | 2011-02-19 17:09:16 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2011-02-19 17:09:16 +0000 | 
| commit | 652e5cbb57bde8a1adc3c44f9c2819b3823090f7 (patch) | |
| tree | 7b7466ef53a673813aa401146abdac2e088804f0 | |
| parent | added program args to Wheel::Run (diff) | |
| download | irssi-scripts-652e5cbb57bde8a1adc3c44f9c2819b3823090f7.tar.gz irssi-scripts-652e5cbb57bde8a1adc3c44f9c2819b3823090f7.zip | |
fix for program args: make it a reference
| -rwxr-xr-x | feature-tests/auto-testing.pl | 2 | 
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(), | 
