diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-09-03 17:42:06 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-10-04 19:25:10 +0200 |
commit | a7526d74ae2e5b0da4e1b27c87a42ffc81f51ef2 (patch) | |
tree | b4ea57d75b0d8d34c8ff963fd84ec1f90f25d556 /build/integration/features/bootstrap | |
parent | 99404bdfb3b52aca8875384857142528472856e9 (diff) | |
download | nextcloud-server-a7526d74ae2e5b0da4e1b27c87a42ffc81f51ef2.tar.gz nextcloud-server-a7526d74ae2e5b0da4e1b27c87a42ffc81f51ef2.zip |
Do not expect a 200 HTTP status code when updating a share
This will be needed to test scenarios in which updating a share return a
different HTTP status code, like 401.
The assertion for the 200 HTTP status code was added in those scenarios
that tested updating a share (that is, those that were also checking the
OCS status code), but not in those in which updating a share was just a
preparatory step for the actual test (in the same way that the HTTP
status code is not checked in those tests when creating a share).
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'build/integration/features/bootstrap')
-rw-r--r-- | build/integration/features/bootstrap/Sharing.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/Sharing.php b/build/integration/features/bootstrap/Sharing.php index abbac030e3b..4e62ea73c5d 100644 --- a/build/integration/features/bootstrap/Sharing.php +++ b/build/integration/features/bootstrap/Sharing.php @@ -218,8 +218,6 @@ trait Sharing { } catch (\GuzzleHttp\Exception\ClientException $ex) { $this->response = $ex->getResponse(); } - - Assert::assertEquals(200, $this->response->getStatusCode()); } public function createShare($user, |