Skip to content

Commit f34fa5e

Browse files
nickvergessenblizzz
authored andcommitted
Fix unit tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent c5be30d commit f34fa5e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/unit/Middleware/OnlyLoggedInMiddlewareTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function setUp(): void {
4343
$this->userSession
4444
);
4545

46-
return parent::setUp();
46+
parent::setUp();
4747
}
4848

4949
public function testBeforeControllerWithoutAnnotation() {

tests/unit/Settings/AdminTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ protected function setUp(): void {
4848
$this->config
4949
);
5050

51-
return parent::setUp();
51+
parent::setUp();
5252
}
5353

5454
public function formDataProvider() {

tests/unit/Settings/SectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function setUp(): void {
4040
$this->urlGenerator
4141
);
4242

43-
return parent::setUp();
43+
parent::setUp();
4444
}
4545

4646
public function testGetId() {

0 commit comments

Comments
 (0)