We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f2899b commit 591dffdCopy full SHA for 591dffd
1 file changed
tests/Integration/ContactList/ContactListServiceTest.php
@@ -30,7 +30,7 @@ public function setUp()
30
public function shouldGetAllAutorespondersBelongsToSpecificCampaign()
31
{
32
$response = $this->sut->getAutoresponders($this->getConfig()['contactListId']);
33
- self::assertGreaterThan(0, $response->count());
+ self::assertGreaterThanOrEqual(0, $response->count());
34
}
35
36
/**
@@ -41,6 +41,6 @@ public function shouldGetAllAutoresponders()
41
42
$response = $this->sut->getAutoresponders();
43
echo $response->count();
44
45
46
0 commit comments