aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Http/Client/ResponseTest.php
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-02-06 18:13:04 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2020-02-11 20:49:27 +0100
commit0687b9ed8a08d2f9828b1fcc7882cd3071c61509 (patch)
tree2a7d56652d8fd340fb19c673f39712d73933e71f /tests/lib/Http/Client/ResponseTest.php
parentb943e0143ac67627d732c113a2d98831190d4e06 (diff)
downloadnextcloud-server-0687b9ed8a08d2f9828b1fcc7882cd3071c61509.tar.gz
nextcloud-server-0687b9ed8a08d2f9828b1fcc7882cd3071c61509.zip
[3rdparty] Bump guzzlehttp/guzzle from 6.3.3 to 6.5.2
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/lib/Http/Client/ResponseTest.php')
-rw-r--r--tests/lib/Http/Client/ResponseTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Http/Client/ResponseTest.php b/tests/lib/Http/Client/ResponseTest.php
index 963a3eb8179..f8f520d6a73 100644
--- a/tests/lib/Http/Client/ResponseTest.php
+++ b/tests/lib/Http/Client/ResponseTest.php
@@ -21,7 +21,7 @@ class ResponseTest extends \Test\TestCase {
protected function setUp(): void {
parent::setUp();
- $this->guzzleResponse = new GuzzleResponse(1337);
+ $this->guzzleResponse = new GuzzleResponse(418);
}
public function testGetBody() {
@@ -31,7 +31,7 @@ class ResponseTest extends \Test\TestCase {
public function testGetStatusCode() {
$response = new Response($this->guzzleResponse);
- $this->assertSame(1337, $response->getStatusCode());
+ $this->assertSame(418, $response->getStatusCode());
}
public function testGetHeader() {