build: Fix two typos in function names

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2020-06-06 15:57:08 +02:00
parent e8af52001e
commit 72f853424b
1 changed files with 2 additions and 2 deletions

View File

@ -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);