From: Stefan Weil Date: Sat, 6 Jun 2020 13:57:08 +0000 (+0200) Subject: build: Fix two typos in function names X-Git-Tag: v20.0.0beta1~317^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=72f853424bd22f06ef694d59c508972c208af342;p=nextcloud-server.git build: Fix two typos in function names Signed-off-by: Stefan Weil --- 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);