Skip to content

Commit 3f34fa9

Browse files
committed
Merge branch '5.1' into 5.2
* 5.1: Remove :void in test function signatures
2 parents 00223b0 + bc6c244 commit 3f34fa9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Transport/Smtp/SmtpTransportTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testToString()
3131
$this->assertEquals('smtp://127.0.0.1:2525', (string) $t);
3232
}
3333

34-
public function testSendDoesNotPingBelowThreshold(): void
34+
public function testSendDoesNotPingBelowThreshold()
3535
{
3636
$stream = new DummyStream();
3737
$envelope = new Envelope(new Address('sender@example.org'), [new Address('recipient@example.org')]);
@@ -44,7 +44,7 @@ public function testSendDoesNotPingBelowThreshold(): void
4444
$this->assertNotContains("NOOP\r\n", $stream->getCommands());
4545
}
4646

47-
public function testSendPingAfterTransportException(): void
47+
public function testSendPingAfterTransportException()
4848
{
4949
$stream = new DummyStream();
5050
$envelope = new Envelope(new Address('sender@example.org'), [new Address('recipient@example.org')]);
@@ -67,7 +67,7 @@ public function testSendPingAfterTransportException(): void
6767
$this->assertFalse($stream->isClosed());
6868
}
6969

70-
public function testSendDoesPingAboveThreshold(): void
70+
public function testSendDoesPingAboveThreshold()
7171
{
7272
$stream = new DummyStream();
7373
$envelope = new Envelope(new Address('sender@example.org'), [new Address('recipient@example.org')]);

0 commit comments

Comments
 (0)