diff --git a/.github/workflows/integration-pgsql.yml b/.github/workflows/integration-pgsql.yml index 82610c9ba25..2683c1909e5 100644 --- a/.github/workflows/integration-pgsql.yml +++ b/.github/workflows/integration-pgsql.yml @@ -53,7 +53,7 @@ jobs: matrix: test-suite: ['callapi', 'chat-1', 'chat-2', 'command', 'conversation-1', 'conversation-2', 'conversation-3', 'conversation-4', 'conversation-5', 'federation', 'integration', 'sharing-1', 'sharing-2', 'sharing-3', 'sharing-4'] php-versions: ['8.3'] - server-versions: ['master'] + server-versions: ['bugfix/noid/fix-cloud-id-generation-with-http'] guests-versions: ['master'] call-summary-bot-versions: ['main'] notifications-versions: ['master'] diff --git a/tests/php/Federation/FederationTest.php b/tests/php/Federation/FederationTest.php index 922586a0c5f..e0d83b6817c 100644 --- a/tests/php/Federation/FederationTest.php +++ b/tests/php/Federation/FederationTest.php @@ -417,6 +417,7 @@ public function testSendAcceptNotification() { 'message' => 'Recipient accepted the share', 'remoteServerUrl' => 'http://example.tld', 'displayName' => 'Foo Bar', + 'cloudId' => 'cloudId@example.tld', ] ); @@ -441,7 +442,7 @@ public function testSendAcceptNotification() { ->with('/') ->willReturn('http://example.tld/index.php/'); - $success = $this->backendNotifier->sendShareAccepted($remote, $id, $token, 'Foo Bar'); + $success = $this->backendNotifier->sendShareAccepted($remote, $id, $token, 'Foo Bar', 'cloudId@example.tld'); $this->assertTrue($success); }