Skip to content

Commit

Permalink
[Bug] Fix missing variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mpysiak committed Jan 7, 2025
1 parent 62fc49f commit dd0b21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sylius/Behat/Page/Shop/Product/ShowPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public function open(array $urlParameters = []): void
try {
parent::open($urlParameters);
$isOpen = true;
} catch (UnexpectedPageException) {
} catch (UnexpectedPageException $e) {
$isOpen = false;
sleep(1);
}
Expand Down

0 comments on commit dd0b21f

Please sign in to comment.