diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/bootstrap/CommandLineContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/CommandLineContext.php b/build/integration/features/bootstrap/CommandLineContext.php index 263cdf6de5c..dda137d654f 100644 --- a/build/integration/features/bootstrap/CommandLineContext.php +++ b/build/integration/features/bootstrap/CommandLineContext.php @@ -97,7 +97,7 @@ class CommandLineContext implements \Behat\Behat\Context\Context { /** * @When /^transferring ownership from "([^"]+)" to "([^"]+)"/ */ - public function transferingOwnership($user1, $user2) { + public function transferringOwnership($user1, $user2) { if ($this->runOcc(['files:transfer-ownership', $user1, $user2]) === 0) { $this->lastTransferPath = $this->findLastTransferFolderForUser($user1, $user2); } else { @@ -109,7 +109,7 @@ class CommandLineContext implements \Behat\Behat\Context\Context { /** * @When /^transferring ownership of path "([^"]+)" from "([^"]+)" to "([^"]+)"/ */ - public function transferingOwnershipPath($path, $user1, $user2) { + public function transferringOwnershipPath($path, $user1, $user2) { $path = '--path=' . $path; if ($this->runOcc(['files:transfer-ownership', $path, $user1, $user2]) === 0) { $this->lastTransferPath = $this->findLastTransferFolderForUser($user1, $user2); |