From 65506e6f08d0b2abe0f6a7263abb703069a3e7f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bedn=C3=A1=C5=99?= Date: Tue, 21 Jun 2022 14:49:32 +0200 Subject: [PATCH] fix: test for redirects (#123) for more info see https://github.com/guzzle/guzzle/pull/3043 --- tests/DefaultApiTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DefaultApiTest.php b/tests/DefaultApiTest.php index 72c06bc3..f62f4aaf 100644 --- a/tests/DefaultApiTest.php +++ b/tests/DefaultApiTest.php @@ -107,7 +107,7 @@ public function test_follow_redirect() $this->mockHandler->append( new Response( 307, - ['location' => 'http://localhost:8088'] + ['location' => 'http://localhost:8086'] ), new Response(204, [], "{\"status\": \"pass\"}") );