Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/acceptance/features/bootstrap/PublicConversationContext.php')
-rw-r--r--tests/acceptance/features/bootstrap/PublicConversationContext.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/acceptance/features/bootstrap/PublicConversationContext.php b/tests/acceptance/features/bootstrap/PublicConversationContext.php
index db9200ac0..6ab453ac2 100644
--- a/tests/acceptance/features/bootstrap/PublicConversationContext.php
+++ b/tests/acceptance/features/bootstrap/PublicConversationContext.php
@@ -97,9 +97,9 @@ class PublicConversationContext implements Context, ActorAwareInterface {
// URL, but the authenticate page for public conversations does not, so
// it needs to be checked that the warning is shown instead.
if (!WaitFor::elementToBeEventuallyShown(
- $this->actor,
- self::passwordProtectedConversationWarning(),
- $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
+ $this->actor,
+ self::passwordProtectedConversationWarning(),
+ $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
PHPUnit_Framework_Assert::fail("The password protected conversation warning was not shown yet after $timeout seconds");
}
}
@@ -112,9 +112,9 @@ class PublicConversationContext implements Context, ActorAwareInterface {
// URL, but the authenticate page for public conversations does not, so
// it needs to be checked that the warning is shown instead.
if (!WaitFor::elementToBeEventuallyShown(
- $this->actor,
- self::wrongPasswordMessage(),
- $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
+ $this->actor,
+ self::wrongPasswordMessage(),
+ $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
PHPUnit_Framework_Assert::fail("The wrong password warning was not shown yet after $timeout seconds");
}
}
@@ -124,8 +124,8 @@ class PublicConversationContext implements Context, ActorAwareInterface {
*/
public function iSeeThatTheCurrentPageIsThePublicConversationLinkIWroteDown() {
PHPUnit_Framework_Assert::assertEquals(
- $this->actor->getSharedNotebook()["public conversation link"],
- $this->actor->getSession()->getCurrentUrl());
+ $this->actor->getSharedNotebook()["public conversation link"],
+ $this->actor->getSession()->getCurrentUrl());
$this->setChatAncestorForActor(TalkAppContext::mainView(), $this->actor);