-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update phpunit/phpunit requirement from ^10.5.10 to ^11.0.0 (#574)
* Update phpunit/phpunit requirement from ^10.5.10 to ^10.5.10 || ^11.0.0 Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.0.3/ChangeLog-11.0.md) - [Commits](sebastianbergmann/phpunit@10.5.10...11.0.3) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * CS Fix --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Filippo Tessarotto <[email protected]>
- Loading branch information
1 parent
9bae2b2
commit 1e30909
Showing
9 changed files
with
22 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ final class MessageTest extends AbstractTestCase | |
]; | ||
|
||
private const CHARSETS = [ | ||
'ASCII' => '! "#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~', | ||
'ASCII' => '! "#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~', | ||
'GB18030' => " 、。〃々〆〇〈〉《》「」『』【】〒〓〔〕〖〗〝〞〡〢〣〤〥〦〧〨〩〾一\u{200b}丁\u{200b}丂踰\u{200b}踱\u{200b}踲\u{200b}", | ||
'ISO-8859-6' => 'ءآأؤإئابةتثجحخدذرزسشصضطظعغـفقكلمنهوىي', | ||
'ISO-8859-7' => 'ΆΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟ2ΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ', | ||
|
@@ -337,7 +337,7 @@ public function testEmailAddress(): void | |
self::assertSame('This one: is "right"', $cc[0]->getName()); | ||
self::assertSame('dong.com', $cc[0]->getHostname()); | ||
self::assertSame('[email protected]', $cc[0]->getAddress()); | ||
self::assertSame('"This one: is \\"right\\"" <[email protected]>', $cc[0]->getFullAddress()); | ||
self::assertSame('"This one: is \"right\"" <[email protected]>', $cc[0]->getFullAddress()); | ||
|
||
self::assertInstanceOf(EmailAddress::class, $cc[1]); | ||
self::assertSame('No-address', $cc[1]->getMailbox()); | ||
|
@@ -531,7 +531,6 @@ public function testPlainTextAttachment(): void | |
self::assertCount(1, $attachments); | ||
|
||
$attachment = \current($attachments); | ||
self::assertNotFalse($attachment); | ||
self::assertSame('Hi!', $attachment->getDecodedContent()); | ||
} | ||
|
||
|
@@ -572,7 +571,6 @@ public function testAdditionalAddresses(): void | |
self::assertCount(1, $emails, $type); | ||
|
||
$email = \current($emails); | ||
self::assertNotFalse($email); | ||
self::assertSame(\sprintf('%[email protected]', \strtolower($type)), $email->getAddress(), $type); | ||
} | ||
} | ||
|
@@ -679,15 +677,15 @@ public function testSetFlags(): void | |
|
||
self::assertFalse($message->isFlagged()); | ||
|
||
$message->setFlag('\\Flagged'); | ||
$message->setFlag('\Flagged'); | ||
|
||
self::assertTrue($message->isFlagged()); | ||
|
||
$message->clearFlag('\\Flagged'); | ||
$message->clearFlag('\Flagged'); | ||
|
||
self::assertFalse($message->isFlagged()); | ||
|
||
$message->setFlag('\\Seen'); | ||
$message->setFlag('\Seen'); | ||
self::assertSame('R', $message->isRecent()); | ||
self::assertTrue($message->isSeen()); | ||
} | ||
|
@@ -1008,7 +1006,6 @@ public function testMixedInlineDisposition(): void | |
self::assertCount(1, $attachments); | ||
|
||
$attachment = \current($attachments); | ||
self::assertNotFalse($attachment); | ||
self::assertSame('Price4VladDaKar.xlsx', $attachment->getFilename()); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters