Skip to content

Commit

Permalink
disable test on php 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bytestream committed Sep 11, 2023
1 parent 922f80a commit 21413e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Horde/Imap/Client/Data/Format/Mailbox/MailboxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ public function escapeStreamProvider()

public function testBadInput()
{
if (version_compare(PHP_VERSION, '8.2.0') >= 0) {
$this->markTestSkipped('mb_convert_encoding converts null byte to &AAA-');
}

/* @todo: Change in Horde_Imap_Client 3.0 to detect Exception, instead
* of blank mailbox name. */
$ob = new Horde_Imap_Client_Data_Format_Mailbox("foo\0");
Expand Down

0 comments on commit 21413e1

Please sign in to comment.