Add tilde before subscribers count in selects

[MAILPOET-3646]
This commit is contained in:
Jan Lysý
2021-06-28 15:03:36 +02:00
committed by Veljko V
parent adaa004948
commit 96c84009b7
9 changed files with 13 additions and 13 deletions

View File

@@ -69,8 +69,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() {