diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-12-16 09:34:14 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-12-16 09:34:14 +0300 |
| commit | eb47047351035d266cb788776f6fcc790e924fcd (patch) | |
| tree | 927472ec89f59b8bd3217834f176776316acd48e /tests | |
| parent | e990a3c00fb630465996a29d60d9acc7687c8979 (diff) | |
maybe fix integration tests failing by always initializing apitest fields
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration/ApiTest.php | 4 |
1 files 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'); |