1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

addressing comments

This commit is contained in:
shimon 2023-02-06 16:40:22 +02:00
parent 794f566fae
commit f20144dbcd

View file

@ -28,7 +28,7 @@ class ComposeTest extends TestCase
public function testServices(): void
{
$this->assertCount(17, $this->object->getServices());
$this->assertCount(15, $this->object->getServices());
$this->assertEquals('appwrite', $this->object->getService('appwrite')->getContainerName());
$this->assertEquals('', $this->object->getService('appwrite')->getImageVersion());
$this->assertEquals('2.2', $this->object->getService('traefik')->getImageVersion());
@ -42,7 +42,7 @@ class ComposeTest extends TestCase
public function testVolumes(): void
{
$this->assertCount(9, $this->object->getVolumes());
$this->assertCount(7, $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]);