Skip to content

Commit

Permalink
FRW-19 Support Symfony packages v6. (#9610)
Browse files Browse the repository at this point in the history
FRW-19 Support Symfony v6
  • Loading branch information
geega committed Jan 24, 2023
1 parent 8a2a6f1 commit d671457
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -44,7 +44,7 @@ public function saveAction(Request $request)
{
/** @var array $filterList */
$filterList = $request->request
->get(static::PARAM_FILTER_LIST);
->all(static::PARAM_FILTER_LIST);

if (!$filterList) {
return $this->jsonResponse();
Expand Down
Expand Up @@ -70,7 +70,7 @@ public function updateFilterOrder(ProductSearchPresentationTester $i): void

// save
$i->click(FilterPreferencesPage::SELECTOR_SAVE_FILTER_ORDER);
$i->wait(1);
$i->wait(5);
$i->canSee('Success', FilterPreferencesPage::SELECTOR_ORDER_SAVE_ALERT);

// check if it was persistent
Expand Down
Expand Up @@ -158,7 +158,7 @@ public function deactivateAttributeToSearch(string $attributeKey): void

$this->canSeeCurrentUrlEquals(SearchPreferencesPage::URL_LIST);

$this->waitForText('Attribute to search was successfully deactivated.', 20);
$this->waitForText('Attribute to search was successfully deactivated.', 30);
$this->canSee('Attribute to search was successfully deactivated.');
}

Expand Down

0 comments on commit d671457

Please sign in to comment.