Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  [FrameworkBundle] fixes #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions
  return null when message with name is not set
  use local PHP web server to test HTTP stream wrappers
  [Translation] Silence error when intl not loaded
  Bump Symfony version to 6.4.7
  Update VERSION for 6.4.6
  Update CHANGELOG for 6.4.6
  Bump Symfony version to 5.4.39
  Update VERSION for 5.4.38
  Update CONTRIBUTORS for 5.4.38
  Update CHANGELOG for 5.4.38
  • Loading branch information
xabbuh committed Apr 3, 2024
2 parents fde915c + ae650d8 commit 2799d9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Tests/Helper/ProgressBarTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1267,4 +1267,11 @@ public function testMultiLineFormatIsFullyCorrectlyWithManuallyCleanup()
stream_get_contents($output->getStream())
);
}

public function testGetNotSetMessage()
{
$progressBar = new ProgressBar($this->getOutputStream());

$this->assertNull($progressBar->getMessage());
}
}

0 comments on commit 2799d9a

Please sign in to comment.