diff --git a/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php b/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php index 65eca63..df9f4b1 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php @@ -80,13 +80,13 @@ public function testHtmlRoutes() { $entity->save(); $this->setRawContent($this->httpKernelHandle($entity->url())); - $this->assertTitle('Test title | Drupal'); + $this->assertTitle('Test title | '); $this->setRawContent($this->httpKernelHandle($entity->url('edit-form'))); - $this->assertTitle('Edit Test title | Drupal'); + $this->assertTitle('Edit Test title | '); $this->setRawContent($this->httpKernelHandle($entity->url('delete-form'))); - $this->assertTitle('Are you sure you want to delete the test entity - data table Test title? | Drupal'); + $this->assertTitle('Are you sure you want to delete the test entity - data table Test title? | '); } /** @@ -123,13 +123,13 @@ public function testAdminHtmlRoutes() { $entity->save(); $this->setRawContent($this->httpKernelHandle($entity->url())); - $this->assertTitle('Test title | Drupal'); + $this->assertTitle('Test title | '); $this->setRawContent($this->httpKernelHandle($entity->url('edit-form'))); - $this->assertTitle('Edit Test title | Drupal'); + $this->assertTitle('Edit Test title | '); $this->setRawContent($this->httpKernelHandle($entity->url('delete-form'))); - $this->assertTitle('Are you sure you want to delete the test entity - admin routes Test title? | Drupal'); + $this->assertTitle('Are you sure you want to delete the test entity - admin routes Test title? | '); } }