diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-02-06 14:04:39 +0100 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-02-08 10:28:29 +0100 |
commit | b105603fd1133c9d64d712c6c97139ff78f6503d (patch) | |
tree | 3135dc32dda70586a6a96d8dcd880c2deb2eab31 /tests/lib/Command | |
parent | e78e27187a11d395d12d55bf01f62f95abe48f55 (diff) | |
download | nextcloud-server-b105603fd1133c9d64d712c6c97139ff78f6503d.tar.gz nextcloud-server-b105603fd1133c9d64d712c6c97139ff78f6503d.zip |
chore: Remove last uses of IJob::execute method
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib/Command')
-rw-r--r-- | tests/lib/Command/CronBusTest.php | 2 |
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); } } } |