Remove the character "~" from counts

[MAILPOET-3708]
This commit is contained in:
Jan Lysý
2021-08-06 14:17:11 +02:00
committed by Veljko V
parent 4120839102
commit 74dc9fce53
9 changed files with 12 additions and 12 deletions

View File

@ -70,8 +70,8 @@ class SubscriberListingRepositoryTest extends \MailPoetTest {
$filters = $this->repository->getFilters($this->getListingDefinition());
expect($filters['segment'])->count(3);
expect($filters['segment'][0]['label'])->equals('All Lists');
expect($filters['segment'][1]['label'])->equals('Subscribers without a list (~3)');
expect($filters['segment'][2]['label'])->endsWith('(~2)');
expect($filters['segment'][1]['label'])->equals('Subscribers without a list (3)');
expect($filters['segment'][2]['label'])->endsWith('(2)');
}
public function testItBuildsGroups() {