Browse Source

Resolve absolute path in tests

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
tags/v23.0.0beta1
Lukas Reschke 2 years ago
parent
commit
19ad636373
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tests/Core/Controller/SvgControllerTest.php

+ 1
- 1
tests/Core/Controller/SvgControllerTest.php View File

@@ -183,7 +183,7 @@ class SvgControllerTest extends TestCase {
$this->appManager->expects($this->once())
->method('getAppPath')
->with($appName)
->willReturn(__DIR__ . '/../../../apps/' . $appName);
->willReturn(realpath(__DIR__ . '/../../../apps/') . '/' . $appName);

$response = $this->svgController->getSvgFromApp($appName, $name, $color);


Loading…
Cancel
Save