From ca1d66fc7e60a26b2c3a7b288234db978e613161 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 21 Feb 2024 13:31:48 +1300 Subject: [PATCH] Fix test --- tests/e2e/Services/Messaging/MessagingBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/Services/Messaging/MessagingBase.php b/tests/e2e/Services/Messaging/MessagingBase.php index b3d760e6cc..25bf985692 100644 --- a/tests/e2e/Services/Messaging/MessagingBase.php +++ b/tests/e2e/Services/Messaging/MessagingBase.php @@ -445,7 +445,7 @@ trait MessagingBase $this->assertEquals($target['body']['providerType'], $response['body']['target']['providerType']); // Test duplicate subscribers not allowed - $response = $this->client->call(Client::METHOD_POST, '/messaging/topics/' . $topics['public']['$id'] . '/subscribers', \array_merge([ + $failure = $this->client->call(Client::METHOD_POST, '/messaging/topics/' . $topics['public']['$id'] . '/subscribers', \array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), [ @@ -453,7 +453,7 @@ trait MessagingBase 'targetId' => $target['body']['$id'], ]); - $this->assertEquals(409, $response['headers']['status-code']); + $this->assertEquals(409, $failure['headers']['status-code']); $topic = $this->client->call(Client::METHOD_GET, '/messaging/topics/' . $topics['public']['$id'], [ 'content-type' => 'application/json',