diff --git a/core/lib/Drupal/Core/Controller/ControllerResolverInterface.php b/core/lib/Drupal/Core/Controller/ControllerResolverInterface.php index 4b0f83f..b0179fe 100644 --- a/core/lib/Drupal/Core/Controller/ControllerResolverInterface.php +++ b/core/lib/Drupal/Core/Controller/ControllerResolverInterface.php @@ -11,8 +11,6 @@ /** * Extends the ControllerResolverInterface from symfony. - * - * */ interface ControllerResolverInterface extends BaseControllerResolverInterface { 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 bdf0ddd..942fa9e 100644 --- a/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php @@ -134,7 +134,7 @@ public function testRenderTitle() { $this->drupalGet('test-render-title'); $this->assertTitle('Foo | Drupal'); - $result = $this->xpath('//h1[@class = "title"]'); + $result = $this->xpath('//h1'); $this->assertEqual('Foo', (string) $result[0]); }