aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Command
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2024-02-08 11:52:40 +0100
committerLouis Chemineau <louis@chmn.me>2024-02-08 18:27:44 +0100
commit303e2febc717065581a3e3bdc92e1672bb8253dc (patch)
treec8f88c01fa1e7f93958a6b48bee3aa4bf5525dfb /tests/lib/Command
parentf6ed1effbf4bb040ab35c625159ad80caff5e687 (diff)
downloadnextcloud-server-303e2febc717065581a3e3bdc92e1672bb8253dc.tar.gz
nextcloud-server-303e2febc717065581a3e3bdc92e1672bb8253dc.zip
Merge pull request #43387 from nextcloud/fix/migrate-away-from-ilogger-in-jobs
Diffstat (limited to 'tests/lib/Command')
-rw-r--r--tests/lib/Command/CronBusTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Command/CronBusTest.php b/tests/lib/Command/CronBusTest.php
index ea610a135d8..4b3c7dca95a 100644
--- a/tests/lib/Command/CronBusTest.php
+++ b/tests/lib/Command/CronBusTest.php
@@ -44,7 +44,7 @@ class CronBusTest extends AsyncBusTest {
protected function runJobs() {
$jobs = $this->jobList->getAll();
foreach ($jobs as $job) {
- $job->execute($this->jobList);
+ $job->start($this->jobList);
}
}
}