Skip to content

Commit bfac41f

Browse files
committed
INT-16757: tearDown() fix for unit tests and removed files from phpunit
1 parent 290cc04 commit bfac41f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/mail_test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function setUp(): void {
6363
$this->helper = $helper;
6464
}
6565

66-
public function tearDown() {
66+
public function tearDown(): void {
6767
$this->helper->messagesink->clear();
6868
$this->helper->messagesink->close();
6969

tests/maildigest_test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function setUp(): void {
9090
/**
9191
* Clear the message sinks set up in this test.
9292
*/
93-
public function tearDown() {
93+
public function tearDown(): void {
9494
$this->helper->messagesink->clear();
9595
$this->helper->messagesink->close();
9696

0 commit comments

Comments
 (0)