summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests/User/DeletedUsersIndexTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/tests/User/DeletedUsersIndexTest.php')
-rw-r--r--apps/user_ldap/tests/User/DeletedUsersIndexTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/tests/User/DeletedUsersIndexTest.php b/apps/user_ldap/tests/User/DeletedUsersIndexTest.php
index 916b5119ce0..e81a81f742f 100644
--- a/apps/user_ldap/tests/User/DeletedUsersIndexTest.php
+++ b/apps/user_ldap/tests/User/DeletedUsersIndexTest.php
@@ -48,7 +48,7 @@ class DeletedUsersIndexTest extends \Test\TestCase {
/** @var UserMapping|\PHPUnit_Framework_MockObject_MockObject */
protected $mapping;
- public function setUp() {
+ public function setUp(): void {
parent::setUp();
// no mocks for those as tests go against DB
@@ -63,9 +63,9 @@ class DeletedUsersIndexTest extends \Test\TestCase {
$this->dui = new DeletedUsersIndex($this->config, $this->db, $this->mapping);
}
- public function tearDown() {
+ public function tearDown(): void {
$this->config->deleteAppFromAllUsers('user_ldap');
- return parent::tearDown();
+ parent::tearDown();
}
public function testMarkAndFetchUser() {