aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/RepairTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/RepairTest.php')
-rw-r--r--tests/lib/RepairTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/RepairTest.php b/tests/lib/RepairTest.php
index ab60b14d47e..97c278a1d10 100644
--- a/tests/lib/RepairTest.php
+++ b/tests/lib/RepairTest.php
@@ -61,7 +61,7 @@ class RepairTest extends TestCase {
});
}
- public function testRunRepairStep() {
+ public function testRunRepairStep(): void {
$this->repair->addStep(new TestRepairStep(false));
$this->repair->run();
@@ -74,7 +74,7 @@ class RepairTest extends TestCase {
);
}
- public function testRunRepairStepThatFail() {
+ public function testRunRepairStepThatFail(): void {
$this->repair->addStep(new TestRepairStep(true));
$this->repair->run();
@@ -87,7 +87,7 @@ class RepairTest extends TestCase {
);
}
- public function testRunRepairStepsWithException() {
+ public function testRunRepairStepsWithException(): void {
$mock = $this->createMock(TestRepairStep::class);
$mock->expects($this->any())
->method('run')
@@ -119,7 +119,7 @@ class RepairTest extends TestCase {
);
}
- public function testRunRepairStepsContinueAfterWarning() {
+ public function testRunRepairStepsContinueAfterWarning(): void {
$this->repair->addStep(new TestRepairStep(true));
$this->repair->addStep(new TestRepairStep(false));
$this->repair->run();