We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52437f0 commit 107e85fCopy full SHA for 107e85f
1 file changed
t/01_run.t
@@ -137,8 +137,8 @@ subtest 'process execute()' => sub {
137
my $test_script_sigtrap = check_bin("$FindBin::Bin/data/term_trap.sh");
138
my $p = Mojo::IOLoop::ReadWriteProcess->new(
139
sleeptime_during_kill => $interval,
140
- execute => $test_script
141
- )->start();
+ execute => 'bash',
+ )->args($test_script)->start();
142
is $p->getline, "TEST normal print\n", 'Get right output from stdout';
143
is $p->err_getline, "TEST error print\n", 'Get right output from stderr';
144
is $p->is_running, 1, 'process is still waiting for our input';
0 commit comments