Browse Source

Fix finding transferred folder in integration tests

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
tags/v12.0.0beta1
Vincent Petry 7 years ago
parent
commit
322b8ba138
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      build/integration/features/bootstrap/CommandLineContext.php

+ 1
- 1
build/integration/features/bootstrap/CommandLineContext.php View File

if (isset($parts[2]) && $parts[2] === $sourceUser) { if (isset($parts[2]) && $parts[2] === $sourceUser) {
// store timestamp as key // store timestamp as key
$foundPaths[] = [ $foundPaths[] = [
'date' => strtotime(dirname($parts[4])),
'date' => strtotime(trim($parts[4], '/')),
'path' => $path, 'path' => $path,
]; ];
} }

Loading…
Cancel
Save