diff --git a/core/tests/Drupal/Tests/Core/Logger/LogMessageParserTest.php b/core/tests/Drupal/Tests/Core/Logger/LogMessageParserTest.php index 05d151e5f3..e6e9ec8495 100644 --- a/core/tests/Drupal/Tests/Core/Logger/LogMessageParserTest.php +++ b/core/tests/Drupal/Tests/Core/Logger/LogMessageParserTest.php @@ -60,13 +60,8 @@ public function providerTestParseMessagePlaceholders() { ], // Message with double PSR3 style messages. [ - ['message' => 'Test {with} two {encapsuled} strings', 'context' => ['with' => 'together', 'encapsuled' => 'awesome']], - ['message' => 'Test @with two @encapsuled strings', 'context' => ['@with' => 'together', '@encapsuled' => 'awesome']], - ], - // Message with PSR3 and twig style messagea. - [ - ['message' => 'Test {with} twig {{encapsuled}} strings', 'context' => ['with' => 'together', 'encapsuled' => 'awesome']], - ['message' => 'Test @with twig {@encapsuled} strings', 'context' => ['@with' => 'together', '@encapsuled' => 'awesome']], + ['message' => 'Test {with} two {{encapsuled}} strings', 'context' => ['with' => 'together', 'encapsuled' => 'awesome']], + ['message' => 'Test @with two {@encapsuled} strings', 'context' => ['@with' => 'together', '@encapsuled' => 'awesome']], ], ]; }