service(NodeJWTService): fix usage of deprecated parameters

This commit is contained in:
Matthew Penner
2021-01-15 18:45:01 -07:00
parent 94653c0a78
commit 130c63a181
7 changed files with 27 additions and 24 deletions

View File

@@ -65,7 +65,7 @@ class ServerDeletionServiceTest extends IntegrationTestCase
$this->expectException(DaemonConnectionException::class);
$this->daemonServerRepository->expects('setServer->delete')->withNoArgs()->andThrows(
new DaemonConnectionException(new BadResponseException('Bad request', new Request('GET', '/test')))
new DaemonConnectionException(new BadResponseException('Bad request', new Request('GET', '/test'), null))
);
$this->getService()->handle($server);