From 61a8e65a06cde728602d61a2c67aca6fc79c6ce3 Mon Sep 17 00:00:00 2001 From: Veljko Date: Tue, 11 Jul 2023 12:46:45 +0200 Subject: [PATCH] Remove bracelets --- .../acceptance/Settings/SubscriberCountShortcodeCest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailpoet/tests/acceptance/Settings/SubscriberCountShortcodeCest.php b/mailpoet/tests/acceptance/Settings/SubscriberCountShortcodeCest.php index a90513de3e..3fa95f36c9 100644 --- a/mailpoet/tests/acceptance/Settings/SubscriberCountShortcodeCest.php +++ b/mailpoet/tests/acceptance/Settings/SubscriberCountShortcodeCest.php @@ -30,7 +30,7 @@ class SubscriberCountShortcodeCest { $segment = $segmentFactory->withName(self::SUBSCRIBER_LIST_NAME)->create(); $subscriberFactory = new Subscriber(); $subscriberFactory->withSegments([$segment])->create(); - $pageContent = self::PAGE_TEXT . " [mailpoet_subscribers_count segments=\"{$segment->getId()}\"]"; + $pageContent = self::PAGE_TEXT . " [mailpoet_subscribers_count segments={$segment->getId()}]"; $postUrl = $i->createPost(self::PAGE_TITLE, $pageContent); $i->login(); @@ -46,7 +46,7 @@ class SubscriberCountShortcodeCest { $segmentFactory = new Segment(); $this->segment1 = $segmentFactory->withName(self::SUBSCRIBERS_LIST_NAME_ONE)->create(); $this->segment2 = $segmentFactory->withName(self::SUBSCRIBERS_LIST_NAME_TWO)->create(); - $pageContent = self::PAGE_TEXT . " [mailpoet_subscribers_count] segments=\"{$this->segment1->getId()},{$this->segment2->getId()}\"]"; + $pageContent = self::PAGE_TEXT . " [mailpoet_subscribers_count] segments={$this->segment1->getId()},{$this->segment2->getId()}]"; $postUrl = $i->createPost(self::PAGE_TITLE, $pageContent); $this->prepareSubscribersData($this->segment1, $this->segment2);