Skip to content

Commit 8420ddb

Browse files
committed
fix: mock tests
1 parent 76afc49 commit 8420ddb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/MockTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,10 @@ public function testUpdateDomain(): void
434434

435435
$result = $this->adapter->updateDomain(
436436
$domain,
437-
[$updatedContact],
438437
[
439438
'data' => 'contact_info',
440-
]
439+
],
440+
[$updatedContact]
441441
);
442442

443443
$this->assertTrue($result);
@@ -450,8 +450,8 @@ public function testUpdateDomainNotFound(): void
450450

451451
$this->adapter->updateDomain(
452452
'notfound.com',
453-
[$this->createContact()],
454-
['data' => 'contact_info']
453+
['data' => 'contact_info'],
454+
[$this->createContact()]
455455
);
456456
}
457457

@@ -480,8 +480,8 @@ public function testUpdateDomainWithInvalidContact(): void
480480

481481
$this->adapter->updateDomain(
482482
$domain,
483-
[$invalidContact],
484-
['data' => 'contact_info']
483+
['data' => 'contact_info'],
484+
[$invalidContact]
485485
);
486486
}
487487

0 commit comments

Comments
 (0)