From d04a77acb6c2a883c7580a977371cd37568e9212 Mon Sep 17 00:00:00 2001 From: nick Date: Fri, 29 Dec 2023 16:17:28 +0700 Subject: [PATCH] Updated unit test --- test/Manticoresearch/ClientTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Manticoresearch/ClientTest.php b/test/Manticoresearch/ClientTest.php index 15bf2ad1..264f7486 100644 --- a/test/Manticoresearch/ClientTest.php +++ b/test/Manticoresearch/ClientTest.php @@ -107,7 +107,7 @@ public function testConnectionNoMoreRetriesError() 'retries' => 2, ]; $exMsg = "After 2 retries to 2 nodes, connection has failed. No more retries left.\n" - . "Retries made:\n 1. to 127.0.0.1:9408\n 2. to 127.0.0.2:9428\n"; + . "Retries made:\n 1. to 127.0.0.1:9418\n 2. to 127.0.0.2:9428\n"; $client = new Client($params); $this->expectException(ConnectionException::class); $this->expectExceptionMessage($exMsg);