Skip to content

Commit f796acd

Browse files
test(rector): remove redundant parent calls in FileUploadHelperTest
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent b6ffc78 commit f796acd

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tests/php/Unit/Helper/FileUploadHelperTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ class FileUploadHelperTest extends TestCase {
2828
private string $tempFile;
2929

3030
protected function setUp(): void {
31-
parent::setUp();
32-
3331
$this->l10n = $this->createMock(IL10N::class);
3432
$this->l10n->method('t')
3533
->willReturnCallback(fn ($text) => $text);
@@ -46,7 +44,6 @@ protected function tearDown(): void {
4644
if (file_exists($this->tempFile)) {
4745
@unlink($this->tempFile);
4846
}
49-
parent::tearDown();
5047
}
5148

5249
public function testValidateUploadedFileSuccess(): void {

0 commit comments

Comments
 (0)