Skip to content

Commit ae650d8

Browse files
committed
Merge branch '5.4' into 6.4
* 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
2 parents a2708a5 + 2bc6c8d commit ae650d8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Tests/Helper/ProgressBarTest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,4 +1267,11 @@ public function testMultiLineFormatIsFullyCorrectlyWithManuallyCleanup()
12671267
stream_get_contents($output->getStream())
12681268
);
12691269
}
1270+
1271+
public function testGetNotSetMessage()
1272+
{
1273+
$progressBar = new ProgressBar($this->getOutputStream());
1274+
1275+
$this->assertNull($progressBar->getMessage());
1276+
}
12701277
}

0 commit comments

Comments
 (0)