From eb47047351035d266cb788776f6fcc790e924fcd Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 16 Dec 2024 09:34:14 +0300 Subject: [PATCH] maybe fix integration tests failing by always initializing apitest fields --- tests/integration/ApiTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/ApiTest.php b/tests/integration/ApiTest.php index 65c3828f6..6fc208e65 100644 --- a/tests/integration/ApiTest.php +++ b/tests/integration/ApiTest.php @@ -3,8 +3,8 @@ use PHPUnit\Framework\TestCase; /** @group integration */ final class ApiTest extends TestCase { - private string $api_url; - private string $sid; + private string $api_url = ""; + private string $sid = ""; function __construct() { $this->api_url = getenv('API_URL');