Skip to content

Commit

Permalink
Merge branch '5.4' into 6.4
Browse files Browse the repository at this point in the history
* 5.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
  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 a2708a5 + 2bc6c8d commit ae650d8
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 ae650d8

Please sign in to comment.