From 636ea34bdc9d682008362ca16f52e43465595ce8 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 30 Apr 2026 01:12:31 +1200 Subject: [PATCH] test: update ComposeTest volume count to 8 for new appwrite-sqlite volume --- tests/unit/Docker/ComposeTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/Docker/ComposeTest.php b/tests/unit/Docker/ComposeTest.php index e63d877baf..9dcdb9a856 100644 --- a/tests/unit/Docker/ComposeTest.php +++ b/tests/unit/Docker/ComposeTest.php @@ -37,9 +37,10 @@ class ComposeTest extends TestCase public function testVolumes(): void { - $this->assertCount(7, $this->object->getVolumes()); + $this->assertCount(8, $this->object->getVolumes()); $this->assertEquals('appwrite-mariadb', $this->object->getVolumes()[0]); $this->assertEquals('appwrite-redis', $this->object->getVolumes()[1]); $this->assertEquals('appwrite-cache', $this->object->getVolumes()[2]); + $this->assertContains('appwrite-sqlite', $this->object->getVolumes()); } }