Skip to content

Commit

Permalink
test: fix typo and data types (#9102)
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan authored May 8, 2024
1 parent abb537f commit 62efe42
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/acceptance/features/bootstrap/SharingNgContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public function before(BeforeScenarioScope $scope): void {
}

/**
* Create link share of itme (resource) or drive (space) using drives.permissions endpoint
* Create link share of item (resource) or drive (space) using drives.permissions endpoint
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return ResponseInterface
* @throws Exception
Expand Down Expand Up @@ -98,7 +98,7 @@ public function createLinkShare(string $user, TableNode $body): ResponseInterfac
* Create link share of drive (space) using drives.root endpoint
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return ResponseInterface
* @throws Exception
Expand Down Expand Up @@ -539,7 +539,7 @@ public function userSendsTheFollowingShareInvitationWithFileIdUsingTheGraphApi(s
* @When /^user "([^"]*)" creates the following resource link share using the Graph API:$/
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return void
* @throws GuzzleException
Expand All @@ -553,7 +553,7 @@ public function userCreatesAPublicLinkShareWithSettings(string $user, TableNode
* @Given /^user "([^"]*)" has created the following resource link share:$/
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return void
* @throws GuzzleException
Expand All @@ -570,7 +570,7 @@ public function userHasCreatedTheFollowingResourceLinkShare(string $user, TableN
* @Given /^user "([^"]*)" has created the following space link share:$/
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return void
* @throws GuzzleException
Expand All @@ -587,7 +587,7 @@ public function userHasCreatedTheFollowingLinkShare(string $user, TableNode $bo
* @When /^user "([^"]*)" updates the last public link share using the Graph API with$/
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return void
* @throws Exception
Expand Down Expand Up @@ -641,7 +641,7 @@ public function updateLinkShare(string $user, TableNode $body, string $permissi
* @When user :user sets the following password for the last link share using the Graph API:
*
* @param string $user
* @param TableNode|null $body
* @param TableNode $body
*
* @return void
* @throws Exception
Expand Down

0 comments on commit 62efe42

Please sign in to comment.