From 06e9c536a5693f5807621a53555710713eb128cf Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Fri, 5 Apr 2024 16:55:36 +0300 Subject: [PATCH] Changed test data since It can not add a DS record for the root domain --- tests/DnsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/DnsTest.php b/tests/DnsTest.php index 37ad4c0f..6612dc6f 100644 --- a/tests/DnsTest.php +++ b/tests/DnsTest.php @@ -122,13 +122,13 @@ public function testGetAllByWebspaceId() $dns = static::$client->dns()->create([ 'site-id' => static::$webspace->id, 'type' => 'DS', - 'host' => '', + 'host' => 'host', 'value' => '60485 5 1 2BB183AF5F22588179A53B0A98631FAD1A292118', ]); $dns2 = static::$client->dns()->create([ 'site-id' => static::$webspace->id, 'type' => 'DS', - 'host' => '', + 'host' => 'host', 'value' => '60485 5 1 2BB183AF5F22588179A53B0A98631FAD1A292119', ]); $dnsInfo = static::$client->dns()->getAll('site-id', static::$webspace->id);