Skip to content

Commit

Permalink
GRINTEGRAT-4628 - added doctype for php8.1 compatibility + fix unit t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
Bartłomiej Stępień committed Jul 10, 2022
1 parent 1f2899b commit 591dffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Integration/ContactList/ContactListServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function setUp()
public function shouldGetAllAutorespondersBelongsToSpecificCampaign()
{
$response = $this->sut->getAutoresponders($this->getConfig()['contactListId']);
self::assertGreaterThan(0, $response->count());
self::assertGreaterThanOrEqual(0, $response->count());
}

/**
Expand All @@ -41,6 +41,6 @@ public function shouldGetAllAutoresponders()
{
$response = $this->sut->getAutoresponders();
echo $response->count();
self::assertGreaterThan(0, $response->count());
self::assertGreaterThanOrEqual(0, $response->count());
}
}

0 comments on commit 591dffd

Please sign in to comment.