Skip to content

Commit

Permalink
OP-326: ECS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkindly committed Jul 8, 2024
1 parent 3079770 commit 54f11e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Behat/Page/Admin/Block/CreatePage.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function selectContentElement(string $contentElement): void
$select->selectOption($contentElement);
$select->waitFor(3, function () use ($contentElement): bool {
return $this->hasElement(
ContentElementHelper::getDefinedElementThatShouldAppearAfterSelectContentElement($contentElement)
ContentElementHelper::getDefinedElementThatShouldAppearAfterSelectContentElement($contentElement),
);
});
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Behat/Page/Admin/Page/CreatePage.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function selectContentElement(string $contentElement): void
$select->selectOption($contentElement);
$select->waitFor(3, function () use ($contentElement): bool {
return $this->hasElement(
ContentElementHelper::getDefinedElementThatShouldAppearAfterSelectContentElement($contentElement)
ContentElementHelper::getDefinedElementThatShouldAppearAfterSelectContentElement($contentElement),
);
});
}
Expand Down

0 comments on commit 54f11e0

Please sign in to comment.