Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/juliushaertl/apporder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJulius Haertl <jus@bitgrid.net>2016-09-04 17:58:27 +0300
committerJulius Haertl <jus@bitgrid.net>2016-09-04 17:58:27 +0300
commite610b10ee9b23735814eb5b37e068235eb353ffe (patch)
tree71c876bcc70fc9f79da922f8ea64ebecedc39e9f /tests
parent1be14289ddda5e397c584d64ca320a71031e904a (diff)
Fix default redirection
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/controller/AppControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/controller/AppControllerTest.php b/tests/unit/controller/AppControllerTest.php
index ed5cdb8..e2281d7 100644
--- a/tests/unit/controller/AppControllerTest.php
+++ b/tests/unit/controller/AppControllerTest.php
@@ -90,7 +90,7 @@ class AppControllerTest extends \Test\TestCase {
->willReturn("");
$result = $this->controller->index();
- $expected = new Http\RedirectResponse('/apps/files/');
+ $expected = new Http\RedirectResponse('http://localhost/index.php/apps/files/');
$this->assertEquals($expected, $result);
}