]> source.dussan.org Git - nextcloud-server.git/commitdiff
build: Fix two typos in function names 21264/head
authorStefan Weil <sw@weilnetz.de>
Sat, 6 Jun 2020 13:57:08 +0000 (15:57 +0200)
committerStefan Weil <sw@weilnetz.de>
Sat, 6 Jun 2020 13:57:08 +0000 (15:57 +0200)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
build/integration/features/bootstrap/CommandLineContext.php

index 263cdf6de5c8dfd9bf5cc9da325a8e4e0366ebcb..dda137d654f6e72a0b8f7afc9a18f95312b57be1 100644 (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);