build: Fix two typos in function names
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
e8af52001e
commit
72f853424b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue