diff options
author | Stefan Weil <sw@weilnetz.de> | 2020-06-06 15:57:08 +0200 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2020-06-06 15:57:08 +0200 |
commit | 72f853424bd22f06ef694d59c508972c208af342 (patch) | |
tree | 5d52b458931198d462bec73a7b38ee2db37a63c7 /build/integration | |
parent | e8af52001e82c4bc428d5b1a742a65dbc6a7cc21 (diff) | |
download | nextcloud-server-72f853424bd22f06ef694d59c508972c208af342.tar.gz nextcloud-server-72f853424bd22f06ef694d59c508972c208af342.zip |
build: Fix two typos in function names
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'build/integration')
-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); |