diff --git a/core/modules/system/src/Tests/Theme/FunctionsTest.php b/core/modules/system/src/Tests/Theme/FunctionsTest.php index a5766fa..b4bd8da 100644 --- a/core/modules/system/src/Tests/Theme/FunctionsTest.php +++ b/core/modules/system/src/Tests/Theme/FunctionsTest.php @@ -277,11 +277,11 @@ function testLinks() { $expected_links .= ''; $expected_links .= '
  • ' . String::checkPlain('Plain "text"') . '
  • '; $expected_links .= '
  • ' . String::checkPlain('potentially unsafe text that be escaped') . '
  • '; - $expected_links .= '
  • ' . String::checkPlain('Front page') . '
  • '; - $expected_links .= '
  • ' . String::checkPlain('Test route') . '
  • '; + $expected_links .= '
  • ' . String::checkPlain('Front page') . '
  • '; + $expected_links .= '
  • ' . String::checkPlain('Test route') . '
  • '; $query = array('key' => 'value'); $encoded_query = String::checkPlain(Json::encode($query)); - $expected_links .= '
  • ' . String::checkPlain('Query test route') . '
  • '; + $expected_links .= '
  • ' . String::checkPlain('Query test route') . '
  • '; $expected_links .= ''; $expected = $expected_heading . $expected_links; $this->assertThemeOutput('links', $variables, $expected);