Skip to content

Commit

Permalink
Merge pull request #158 from dpushkarev/bugfix-incorrect-test-data
Browse files Browse the repository at this point in the history
Changed test data since It can not add a DS record for the root domain
  • Loading branch information
sibprogrammer committed Apr 5, 2024
2 parents a2658c0 + 06e9c53 commit 96401b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/DnsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 96401b2

Please sign in to comment.