summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-12-16 09:34:14 +0300
committerAndrew Dolgov <fox@fakecake.org>2024-12-16 09:34:14 +0300
commiteb47047351035d266cb788776f6fcc790e924fcd (patch)
tree927472ec89f59b8bd3217834f176776316acd48e
parente990a3c00fb630465996a29d60d9acc7687c8979 (diff)
maybe fix integration tests failing by always initializing apitest fields
-rw-r--r--tests/integration/ApiTest.php4
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');