diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-04-19 20:10:29 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-05-03 08:58:25 +0200 |
commit | ea8e80c20ba2a2f4d6547a184ccc0358fa42940c (patch) | |
tree | fdaf92134ff9e0310e83d6c47241697debb84c77 /apps/updatenotification/tests | |
parent | 35cb529df37d33f4c74a5602a3bb9f6bd84fbe40 (diff) | |
download | nextcloud-server-ea8e80c20ba2a2f4d6547a184ccc0358fa42940c.tar.gz nextcloud-server-ea8e80c20ba2a2f4d6547a184ccc0358fa42940c.zip |
Adjust updatenotification app settings section/priority
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/updatenotification/tests')
-rw-r--r-- | apps/updatenotification/tests/Settings/AdminTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/tests/Settings/AdminTest.php b/apps/updatenotification/tests/Settings/AdminTest.php index 4e2ac3a53d9..d5915a9c102 100644 --- a/apps/updatenotification/tests/Settings/AdminTest.php +++ b/apps/updatenotification/tests/Settings/AdminTest.php @@ -140,10 +140,10 @@ class AdminTest extends TestCase { public function testGetSection() { - $this->assertSame('server', $this->admin->getSection()); + $this->assertSame('overview', $this->admin->getSection()); } public function testGetPriority() { - $this->assertSame(1, $this->admin->getPriority()); + $this->assertSame(11, $this->admin->getPriority()); } } |