From 61265778a517050495d9fc77c4f5248e4e6d09b3 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Mon, 27 Dec 2021 16:01:45 +0100 Subject: [PATCH] fix unit-test Signed-off-by: Michael Kaufmann --- tests/DomainZones/DomainZonesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DomainZones/DomainZonesTest.php b/tests/DomainZones/DomainZonesTest.php index 69e25147..dc6424ac 100644 --- a/tests/DomainZones/DomainZonesTest.php +++ b/tests/DomainZones/DomainZonesTest.php @@ -36,7 +36,7 @@ class DomainZonesTest extends TestCase $result = json_decode($json_result, true)['data']; $this->assertTrue(count($result) > 1); $this->assertEquals('$ORIGIN test2.local.', $result[1]); - $this->assertEquals('@ 604800 IN MX 10 mx.hostname.tld.', $result[count($result)-2]); + $this->assertEquals('@ 604800 IN MX 10 mx.hostname.tld.', $result[count($result)-2]); } /**