Skip to content

Commit 591dffd

Browse files
author
Bartłomiej Stępień
committed
GRINTEGRAT-4628 - added doctype for php8.1 compatibility + fix unit tests
1 parent 1f2899b commit 591dffd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Integration/ContactList/ContactListServiceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function setUp()
3030
public function shouldGetAllAutorespondersBelongsToSpecificCampaign()
3131
{
3232
$response = $this->sut->getAutoresponders($this->getConfig()['contactListId']);
33-
self::assertGreaterThan(0, $response->count());
33+
self::assertGreaterThanOrEqual(0, $response->count());
3434
}
3535

3636
/**
@@ -41,6 +41,6 @@ public function shouldGetAllAutoresponders()
4141
{
4242
$response = $this->sut->getAutoresponders();
4343
echo $response->count();
44-
self::assertGreaterThan(0, $response->count());
44+
self::assertGreaterThanOrEqual(0, $response->count());
4545
}
4646
}

0 commit comments

Comments
 (0)