Skip to content

Commit

Permalink
Merge branch '5.4' into 6.2
Browse files Browse the repository at this point in the history
* 5.4:
  [Security] fix compat with security-core v6
  use proper methods to assert exception messages contain certain strings
  • Loading branch information
derrabus committed Feb 14, 2023
2 parents 10da114 + bc04b7a commit 005c745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Style/SymfonyStyleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public function testCreateTableWithoutConsoleOutput()
$style = new SymfonyStyle($input, $output);

$this->expectException(RuntimeException::class);
$this->expectDeprecationMessage('Output should be an instance of "Symfony\Component\Console\Output\ConsoleSectionOutput"');
$this->expectExceptionMessage('Output should be an instance of "Symfony\Component\Console\Output\ConsoleSectionOutput"');

$style->createTable()->appendRow(['row']);
}
Expand Down

0 comments on commit 005c745

Please sign in to comment.