diff --git a/core/modules/views/src/Tests/Handler/AreaTitleWebTest.php b/core/modules/views/src/Tests/Handler/AreaTitleWebTest.php
index fa86118..8a31d75 100644
--- a/core/modules/views/src/Tests/Handler/AreaTitleWebTest.php
+++ b/core/modules/views/src/Tests/Handler/AreaTitleWebTest.php
@@ -41,23 +41,48 @@ public function testTitleText() {
     $this->drupalGet('test-area-title');
     $this->assertTitle('test_title_header | Drupal');
 
-    // Check the view to return no result.
+    // Confirm that the view has the normal title before making the view return
+    // no result.
+    $this->drupalGet('test-area-title');
+    $this->assertTitle('test_title_header | Drupal');
+
+    // Change the view to return no result.
     /** @var \Drupal\views\Entity\View $view */
     $view = View::load('test_area_title');
     $display =& $view->getDisplay('default');
-    $display['display_options']['filters']['id'] = [
-      'field' => 'id',
-      'id' => 'id',
+    $display['display_options']['filters']['name'] = [
+      'field' => 'name',
+      'id' => 'name',
       'table' => 'views_test_data',
       'relationship' => 'none',
-      'plugin_id' => 'numeric',
-      // Add a value which does not exist.
-      'value' => ['value' => '042118160112'],
+      'plugin_id' => 'string',
+      // Add a value which does not exist. The dataset is defined in
+      // \Drupal\views\Tests\ViewTestData::dataSet().
+      'value' => 'Euler',
     ];
     $view->save();
 
     $this->drupalGet('test-area-title');
     $this->assertTitle('test_title_empty | Drupal');
+
+    // Change the view to return a result instead.
+    /** @var \Drupal\views\Entity\View $view */
+    $view = View::load('test_area_title');
+    $display =& $view->getDisplay('default');
+    $display['display_options']['filters']['name'] = [
+      'field' => 'name',
+      'id' => 'name',
+      'table' => 'views_test_data',
+      'relationship' => 'none',
+      'plugin_id' => 'string',
+      // Change to a value which does exist. The dataset is defined in
+      // \Drupal\views\Tests\ViewTestData::dataSet().
+      'value' => 'Ringo',
+    ];
+    $view->save();
+
+    $this->drupalGet('test-area-title');
+    $this->assertTitle('test_title_header | Drupal');
   }
 
 }
