summaryrefslogtreecommitdiffstats
path: root/tests/lib/Settings
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-08-02 10:26:09 +0200
committerJulius Härtl <jus@bitgrid.net>2018-08-02 10:26:09 +0200
commit0dd519cff180d93d62c06b30b2706b2413c2895c (patch)
tree9e938eb484ea73eb1649b01bc5a37c9ccf727400 /tests/lib/Settings
parentb46b7d7591b4f76f234e8514c23e46f67c590a0b (diff)
downloadnextcloud-server-0dd519cff180d93d62c06b30b2706b2413c2895c.tar.gz
nextcloud-server-0dd519cff180d93d62c06b30b2706b2413c2895c.zip
Fix encryption admin section tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/lib/Settings')
-rw-r--r--tests/lib/Settings/Admin/EncryptionTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Settings/Admin/EncryptionTest.php b/tests/lib/Settings/Admin/EncryptionTest.php
index 41196a9bc41..9be2a3f46d9 100644
--- a/tests/lib/Settings/Admin/EncryptionTest.php
+++ b/tests/lib/Settings/Admin/EncryptionTest.php
@@ -129,10 +129,10 @@ class EncryptionTest extends TestCase {
}
public function testGetSection() {
- $this->assertSame('encryption', $this->admin->getSection());
+ $this->assertSame('security', $this->admin->getSection());
}
public function testGetPriority() {
- $this->assertSame(0, $this->admin->getPriority());
+ $this->assertSame(10, $this->admin->getPriority());
}
}