From 74d581b300a0d4ba70252aed259be07fd8c39778 Mon Sep 17 00:00:00 2001 From: Alejandro Estringana Ruiz Date: Wed, 7 Feb 2024 16:06:48 +0100 Subject: [PATCH] Fix issue on WebFrameworkTestCase --- tests/Common/WebFrameworkTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Common/WebFrameworkTestCase.php b/tests/Common/WebFrameworkTestCase.php index aa6d23310e9..d2abf571a72 100644 --- a/tests/Common/WebFrameworkTestCase.php +++ b/tests/Common/WebFrameworkTestCase.php @@ -33,7 +33,7 @@ abstract class WebFrameworkTestCase extends IntegrationTestCase protected function ddSetUp() { parent::ddSetUp(); - $this->cookiesFile = realpath(dirname(static::getAppIndexScript()) . '/' . static::COOKIE_JAR); + $this->cookiesFile = realpath(dirname(static::getAppIndexScript())) . '/' . static::COOKIE_JAR; $f = @fopen($this->cookiesFile, "r+"); if ($f !== false) { ftruncate($f, 0);