Fix encryption admin section tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
b46b7d7591
commit
0dd519cff1
2 changed files with 4 additions and 4 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue