aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Core/Controller/NavigationControllerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Core/Controller/NavigationControllerTest.php b/tests/Core/Controller/NavigationControllerTest.php
index ef4720604fb..a33ddf7dd23 100644
--- a/tests/Core/Controller/NavigationControllerTest.php
+++ b/tests/Core/Controller/NavigationControllerTest.php
@@ -132,7 +132,7 @@ class NavigationControllerTest extends TestCase {
$this->request->expects($this->once())
->method('getHeader')
->with('If-None-Match')
- ->willReturn(md5(json_encode($navigation)));
+ ->willReturn(md5(json_encode(['files'])));
$this->navigationManager->expects($this->once())
->method('getAll')
->with('link')
@@ -143,11 +143,11 @@ class NavigationControllerTest extends TestCase {
}
public function testGetSettingsNavigationEtagMatch() {
- $navigation = [ ['id' => 'files', 'href' => '/index.php/apps/files', 'icon' => 'icon' ] ];
+ $navigation = [ ['id' => 'logout', 'href' => '/index.php/apps/files', 'icon' => 'icon' ] ];
$this->request->expects($this->once())
->method('getHeader')
->with('If-None-Match')
- ->willReturn(md5(json_encode($navigation)));
+ ->willReturn(md5(json_encode([ ['id' => 'logout', 'href' => 'logout', 'icon' => 'icon' ] ])));
$this->navigationManager->expects($this->once())
->method('getAll')
->with('settings')