Skip to content

Commit d3e8303

Browse files
Merge branch '4.4' into 5.1
* 4.4: CS fix [travis] use PHP 8.0 to patch return types and run deps=low Update sl_SI translations Don't trigger deprecation for deprecated aliases pointing to deprecated definitions [HttpFoundation] use atomic writes in MockFileSessionStorage [DI] fix param annotation [Config] Add \Symfony\Component\Config\Loader::load() return type Simplify PHP CS Fixer config Rename normalize param
2 parents 87833be + adb658b commit d3e8303

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Output/ConsoleSectionOutputTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ConsoleSectionOutputTest extends TestCase
2626

2727
protected function setUp(): void
2828
{
29-
$this->stream = fopen('php://memory', 'r+b', false);
29+
$this->stream = fopen('php://memory', 'r+', false);
3030
}
3131

3232
protected function tearDown(): void
@@ -143,7 +143,7 @@ public function testMultipleSectionsOutput()
143143

144144
public function testClearSectionContainingQuestion()
145145
{
146-
$inputStream = fopen('php://memory', 'r+b', false);
146+
$inputStream = fopen('php://memory', 'r+', false);
147147
fwrite($inputStream, "Batman & Robin\n");
148148
rewind($inputStream);
149149

0 commit comments

Comments
 (0)