Resolve absolute path in tests

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
pull/28726/head
Lukas Reschke 5 years ago
parent 2994dbe215
commit 19ad636373
  1. 2
      tests/Core/Controller/SvgControllerTest.php

@ -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