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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-08-05 23:49:05 +0300
committerMorris Jobke <hey@morrisjobke.de>2020-08-05 23:49:47 +0300
commit5a06e385644dc90e6ca949beac2c731a318d4f9b (patch)
tree9837bcdb3519a9b88724a5fb4daf67be16cc463b /tests
parent258cde135df0d88fc8ab417036d2335a5ece991e (diff)
Dashboard app is disabled and there is no need to redirect to files app
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/acceptance/features/bootstrap/LoginPageContext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/features/bootstrap/LoginPageContext.php b/tests/acceptance/features/bootstrap/LoginPageContext.php
index 08046c6e3a3..bf44d31fb03 100644
--- a/tests/acceptance/features/bootstrap/LoginPageContext.php
+++ b/tests/acceptance/features/bootstrap/LoginPageContext.php
@@ -91,7 +91,7 @@ class LoginPageContext implements Context, ActorAwareInterface {
*/
public function iSeeThatTheCurrentPageIsTheLoginPage() {
PHPUnit_Framework_Assert::assertStringStartsWith(
- $this->actor->locatePath("/login?redirect_url=/index.php/apps/files"),
+ $this->actor->locatePath("/login"),
$this->actor->getSession()->getCurrentUrl());
}