From 41e4483c3fe11564bc49ea495fc4be3e0f5ad35f Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Sun, 17 May 2026 11:21:28 +1200 Subject: [PATCH] test: update compose worker count --- tests/unit/Docker/ComposeTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit/Docker/ComposeTest.php b/tests/unit/Docker/ComposeTest.php index 570904f7c3..dceed2200c 100644 --- a/tests/unit/Docker/ComposeTest.php +++ b/tests/unit/Docker/ComposeTest.php @@ -23,11 +23,13 @@ class ComposeTest extends TestCase public function testServices(): void { - $this->assertCount(17, $this->object->getServices()); + $this->assertCount(16, $this->object->getServices()); $this->assertEquals('appwrite', $this->object->getService('appwrite')->getContainerName()); $this->assertEquals('', $this->object->getService('appwrite')->getImageVersion()); $this->assertEquals('3.6', $this->object->getService('traefik')->getImageVersion()); $this->assertEquals(['2080' => '80', '2443' => '443', '8080' => '8080'], $this->object->getService('traefik')->getPorts()); + $this->assertArrayNotHasKey('appwrite-worker-mails', $this->object->getServices()); + $this->assertEquals('appwrite-worker-notifications', $this->object->getService('appwrite-worker-notifications')->getContainerName()); } public function testNetworks(): void