Fix encryption admin section tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2018-08-02 10:26:09 +02:00
parent b46b7d7591
commit 0dd519cff1
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF
2 changed files with 4 additions and 4 deletions

View file

@ -92,10 +92,10 @@ class AdminTest extends TestCase {
}
public function testGetSection() {
$this->assertSame('encryption', $this->admin->getSection());
$this->assertSame('security', $this->admin->getSection());
}
public function testGetPriority() {
$this->assertSame(5, $this->admin->getPriority());
$this->assertSame(11, $this->admin->getPriority());
}
}

View file

@ -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());
}
}