From 21a6783e1e1bcd2c0f128d73b8bf359827b08faf Mon Sep 17 00:00:00 2001 From: Ilia Gusev Date: Sun, 30 Jun 2024 21:00:50 +0700 Subject: [PATCH] fix BotApiTest --- tests/BotApiTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/BotApiTest.php b/tests/BotApiTest.php index 823292d3..43e351bf 100644 --- a/tests/BotApiTest.php +++ b/tests/BotApiTest.php @@ -143,6 +143,6 @@ private function createHttpClient() private function createBotApi(HttpClientInterface $httpClient) { - return new BotApi('token', null, $httpClient); + return new BotApi('token', $httpClient); } }