From 62efe421856f98ced70d592408e9a70c14bb786c Mon Sep 17 00:00:00 2001 From: Sawjan Gurung Date: Wed, 8 May 2024 15:25:42 +0545 Subject: [PATCH] test: fix typo and data types (#9102) --- .../features/bootstrap/SharingNgContext.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/acceptance/features/bootstrap/SharingNgContext.php b/tests/acceptance/features/bootstrap/SharingNgContext.php index 9198aede4..1fc329166 100644 --- a/tests/acceptance/features/bootstrap/SharingNgContext.php +++ b/tests/acceptance/features/bootstrap/SharingNgContext.php @@ -56,10 +56,10 @@ class SharingNgContext implements Context { } /** - * 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 @@ -98,7 +98,7 @@ class SharingNgContext implements Context { * Create link share of drive (space) using drives.root endpoint * * @param string $user - * @param TableNode|null $body + * @param TableNode $body * * @return ResponseInterface * @throws Exception @@ -539,7 +539,7 @@ class SharingNgContext implements Context { * @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 @@ -553,7 +553,7 @@ class SharingNgContext implements Context { * @Given /^user "([^"]*)" has created the following resource link share:$/ * * @param string $user - * @param TableNode|null $body + * @param TableNode $body * * @return void * @throws GuzzleException @@ -570,7 +570,7 @@ class SharingNgContext implements Context { * @Given /^user "([^"]*)" has created the following space link share:$/ * * @param string $user - * @param TableNode|null $body + * @param TableNode $body * * @return void * @throws GuzzleException @@ -587,7 +587,7 @@ class SharingNgContext implements Context { * @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 @@ -641,7 +641,7 @@ class SharingNgContext implements Context { * @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