Skip to content

Commit

Permalink
Fix issue on WebFrameworkTestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
estringana committed Feb 7, 2024
1 parent 22b29fe commit 74d581b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Common/WebFrameworkTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 74d581b

Please sign in to comment.