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
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-11-28 12:26:27 +0300
committerGitHub <noreply@github.com>2016-11-28 12:26:27 +0300
commit68ed4ef59fb76b9f07264ed8b1774d3fa52fb456 (patch)
tree59c9a18ec4c30ce032b43885a9d56dbd5ac2556c
parent9a2ab513a983f31580d5c1061436a2041931ccdf (diff)
parent60cc9984e23b9006aa531b88eb712afdc117d5e6 (diff)
Merge pull request #26719 from owncloud/stable9-fix-transferownership-findtransferfolder
[stable9] Fix finding transferred folder in integration tests
-rw-r--r--build/integration/features/bootstrap/CommandLineContext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/CommandLineContext.php b/build/integration/features/bootstrap/CommandLineContext.php
index 374a14410bf..95f492a62db 100644
--- a/build/integration/features/bootstrap/CommandLineContext.php
+++ b/build/integration/features/bootstrap/CommandLineContext.php
@@ -55,7 +55,7 @@ class CommandLineContext implements \Behat\Behat\Context\Context {
if (isset($parts[2]) && $parts[2] === $sourceUser) {
// store timestamp as key
$foundPaths[] = [
- 'date' => strtotime(dirname($parts[4])),
+ 'date' => strtotime(trim($parts[4], '/')),
'path' => $path,
];
}