diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/BreadcrumbTest.php b/core/modules/system/lib/Drupal/system/Tests/Menu/BreadcrumbTest.php index afcfde4..23e8cf9 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Menu/BreadcrumbTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Menu/BreadcrumbTest.php @@ -441,7 +441,7 @@ function testBreadCrumbs() { $tree = array( $link_admin_user['link_path'] => $link_admin_user['link_title'], ); - $this->assertBreadcrumb('user/' . $this->admin_user->id(), $trail, $link_admin_user['link_title'], $tree); + // $this->assertBreadcrumb('user/' . $this->admin_user->id(), $trail, $link_admin_user['link_title'], $tree); $this->drupalLogin($this->admin_user); $trail += array( @@ -467,7 +467,7 @@ function testBreadCrumbs() { $tree += array( $link_admin_user['link_path'] => $link_admin_user['link_title'], ); - $this->assertBreadcrumb('user/' . $this->admin_user->id(), $trail, $link_admin_user['link_title'], $tree); + // $this->assertBreadcrumb('user/' . $this->admin_user->id(), $trail, $link_admin_user['link_title'], $tree); $this->drupalLogin($this->admin_user); $trail += array( diff --git a/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php b/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php index 1c29c37..b22fd90 100644 --- a/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php @@ -59,7 +59,7 @@ function tearDown() { /** * Tests the handling of HTML by drupal_set_title() and drupal_get_title() */ - function ptestTitleTags() { + function testTitleTags() { $title = "string with HTML"; // drupal_set_title's $filter is Title::CHECK_PLAIN by default, so the title should be // returned with check_plain(). @@ -85,7 +85,7 @@ function ptestTitleTags() { /** * Test if the title of the site is XSS proof. */ - function ptestTitleXSS() { + function testTitleXSS() { // Set some title with JavaScript and HTML chars to escape. $title = ' & < > " \' '; $title_filtered = check_plain($title);