diff --git a/lib/Drupal/views/Tests/Plugin/DisplayTest.php b/lib/Drupal/views/Tests/Plugin/DisplayTest.php
index 813e65bb8df64410fff7d14882132669a762365f..6b6fc7c0df6c93f3d66095d3e6e7de672d1abfb5 100644
--- a/lib/Drupal/views/Tests/Plugin/DisplayTest.php
+++ b/lib/Drupal/views/Tests/Plugin/DisplayTest.php
@@ -39,8 +39,7 @@ public function setUp() {
     $this->drupalLogin($this->adminUser);
 
     // Create 10 nodes.
-    $this->nodes = array();
-    for ($i = 0; $i < 11; $i++) {
+    for ($i = 0; $i <= 10; $i++) {
       $this->drupalCreateNode(array('promote' => TRUE));
     }
   }
@@ -100,7 +99,7 @@ function testDisplayPlugin() {
 
     // Check the new value has been saved by checking the UI summary text.
     $this->drupalGet('admin/structure/views/view/frontpage/edit/display_test_1');
-    $this->assertText($this->randomString);
+    $this->assertRaw($this->randomString);
   }
 
   /**