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-25 12:24:20 +0300
committerGitHub <noreply@github.com>2016-11-25 12:24:20 +0300
commit0f8d950618047db4974c900f71aaae4a66278560 (patch)
treeae3ff3ec4761ccf17a786a2a0d22814f4842dc17
parentbd81fca428f7a0b46cfe3f05d75690f68e55d464 (diff)
parent1167dfb5683430ff978b556bf44aad15c5184b1f (diff)
Merge pull request #26669 from owncloud/stable9.1-fix-transferownership-findtransferfolder
[stable9.1] 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,
];
}