summaryrefslogtreecommitdiffstats
path: root/tests/acceptance/features/bootstrap/DialogContext.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/acceptance/features/bootstrap/DialogContext.php')
-rw-r--r--tests/acceptance/features/bootstrap/DialogContext.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/acceptance/features/bootstrap/DialogContext.php b/tests/acceptance/features/bootstrap/DialogContext.php
index dea9f434bab..3deea2f5ebf 100644
--- a/tests/acceptance/features/bootstrap/DialogContext.php
+++ b/tests/acceptance/features/bootstrap/DialogContext.php
@@ -56,9 +56,9 @@ class DialogContext implements Context, ActorAwareInterface {
*/
public function iSeeThatTheConfirmationDialogIsShown() {
if (!WaitFor::elementToBeEventuallyShown(
- $this->actor,
- self::theDialog(),
- $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
+ $this->actor,
+ self::theDialog(),
+ $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
Assert::fail("The confirmation dialog was not shown yet after $timeout seconds");
}
}
@@ -68,9 +68,9 @@ class DialogContext implements Context, ActorAwareInterface {
*/
public function iSeeThatTheConfirmationDialogIsNotShown() {
if (!WaitFor::elementToBeEventuallyNotShown(
- $this->actor,
- self::theDialog(),
- $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
+ $this->actor,
+ self::theDialog(),
+ $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
Assert::fail("The confirmation dialog is still shown after $timeout seconds");
}
}