test: update ComposeTest volume count to 8 for new appwrite-sqlite volume

This commit is contained in:
Jake Barnby
2026-04-30 01:12:31 +12:00
parent 4e5fbea62c
commit 636ea34bdc
+2 -1
View File
@@ -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());
}
}