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 /apps/federation | |
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 'apps/federation')
-rw-r--r-- | apps/federation/tests/BackgroundJob/GetSharedSecretTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federation/tests/BackgroundJob/GetSharedSecretTest.php b/apps/federation/tests/BackgroundJob/GetSharedSecretTest.php index c0316b8247f..55db5cb744f 100644 --- a/apps/federation/tests/BackgroundJob/GetSharedSecretTest.php +++ b/apps/federation/tests/BackgroundJob/GetSharedSecretTest.php @@ -155,7 +155,7 @@ class GetSharedSecretTest extends TestCase { $this->jobList->expects($this->never())->method('add'); } - $getSharedSecret->execute($this->jobList); + $getSharedSecret->start($this->jobList); } public function dataTestExecute() { |