Skip to content

Commit 6e2fcec

Browse files
Fix tests
1 parent 2182a41 commit 6e2fcec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Symfony/Component/Console/Tests/ApplicationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ public function testRenderExceptionEscapesLines()
988988
$application->setAutoExit(false);
989989
putenv('COLUMNS=22');
990990
$application->register('foo')->setCode(function () {
991-
throw new \Exception('don\'t break here <info>!</info>');
991+
throw new \Exception('dont break here <info>!</info>');
992992
});
993993
$tester = new ApplicationTester($application);
994994

src/Symfony/Component/Console/Tests/Helper/TableTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,12 +616,12 @@ public static function renderProvider()
616616
[],
617617
[
618618
[
619-
new TableCell('<error>Don\'t break'."\n".'here</error>', ['colspan' => 2]),
619+
new TableCell('<error>Dont break'."\n".'here</error>', ['colspan' => 2]),
620620
],
621621
new TableSeparator(),
622622
[
623623
'foo',
624-
new TableCell('<error>Don\'t break'."\n".'here</error>', ['rowspan' => 2]),
624+
new TableCell('<error>Dont break'."\n".'here</error>', ['rowspan' => 2]),
625625
],
626626
[
627627
'bar',

0 commit comments

Comments
 (0)