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/build
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2015-12-07 17:03:40 +0300
committerSergio Bertolin <sbertolin@solidgear.es>2015-12-10 11:10:23 +0300
commit1d7a2aa9f97c00a3019214a08694fa583d29d5fb (patch)
treea4888096c4723f08c618b7d290b87db952f14f9f /build
parente72955c65d82cd30b63b116eebd19639b4de496e (diff)
Folder depth needs to be at least 3 for all tests to pass
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/bootstrap/WebDav.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php
index 37e8e4ec474..d88447d41a6 100644
--- a/build/integration/features/bootstrap/WebDav.php
+++ b/build/integration/features/bootstrap/WebDav.php
@@ -126,7 +126,7 @@ trait WebDav{
* @param \Behat\Gherkin\Node\TableNode|null $expectedElements
*/
public function checkElementList($user, $expectedElements){
- $elementList = $this->listFolder($user, '/', 2);
+ $elementList = $this->listFolder($user, '/', 3);
if ($expectedElements instanceof \Behat\Gherkin\Node\TableNode) {
$elementRows = $expectedElements->getRows();
$elementsSimplified = $this->simplifyArray($elementRows);