diff options
Diffstat (limited to 'tests/lib/templatelayout.php')
-rw-r--r-- | tests/lib/templatelayout.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/templatelayout.php b/tests/lib/templatelayout.php index 1035dae122d..c23aaa9b762 100644 --- a/tests/lib/templatelayout.php +++ b/tests/lib/templatelayout.php @@ -52,7 +52,7 @@ class OC_TemplateLayout extends \Test\TestCase { */ public function testConvertToRelativePath($absolutePath, $expected) { $_SERVER['REQUEST_URI'] = $expected; - $_SERVER['SCRIPT_NAME'] = '/'; + $_SERVER['SCRIPT_NAME'] = $expected; $relativePath = \Test_Helper::invokePrivate(new \OC_TemplateLayout('user'), 'convertToRelativePath', array($absolutePath)); $this->assertEquals($expected, $relativePath); |