fix tests

This commit is contained in:
Oliver Gorwits
2023-07-20 20:39:31 +01:00
parent 2d5e4dddee
commit 4b6227fa2b
2 changed files with 6 additions and 4 deletions

View File

@@ -102,10 +102,10 @@ is($j9->_last_priority, 0, 'priority is for driverless action');
is($j9->log, 'OK: second driverless action is successful.',
'driverless actions always run');
my $j9 = do_job('TestSeven');
is($j9->best_status, 'error', 'status is error');
is((scalar @{$j9->_statuslist}), 2, 'two workers ran');
is($j9->_last_priority, 1000000, 'priority is for direct action');
my $j10 = do_job('TestSeven');
is($j10->best_status, 'error', 'status is error');
is((scalar @{$j10->_statuslist}), 2, 'two workers ran');
is($j10->_last_priority, 1000000, 'priority is for direct action');
done_testing;