diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-05 22:49:05 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-08-05 22:49:47 +0200 |
commit | 5a06e385644dc90e6ca949beac2c731a318d4f9b (patch) | |
tree | 9837bcdb3519a9b88724a5fb4daf67be16cc463b /tests | |
parent | 258cde135df0d88fc8ab417036d2335a5ece991e (diff) | |
download | nextcloud-server-5a06e385644dc90e6ca949beac2c731a318d4f9b.tar.gz nextcloud-server-5a06e385644dc90e6ca949beac2c731a318d4f9b.zip |
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.php | 2 |
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()); } |