diff --git a/core/modules/system/src/Tests/Update/UpdatePathTestBaseFilledTest.php b/core/modules/system/src/Tests/Update/UpdatePathTestBaseFilledTest.php
index 30ed37d..f548596 100644
--- a/core/modules/system/src/Tests/Update/UpdatePathTestBaseFilledTest.php
+++ b/core/modules/system/src/Tests/Update/UpdatePathTestBaseFilledTest.php
@@ -7,6 +7,8 @@
 
 namespace Drupal\system\Tests\Update;
 
+use Drupal\node\Entity\Node;
+
 /**
  * Runs UpdatePathTestBaseTest with a dump filled with content.
  *
@@ -21,4 +23,31 @@ protected function setDatabaseDumpFiles() {
     $this->databaseDumpFiles[0] = __DIR__ . '/../../../tests/fixtures/update/drupal-8.filled.standard.php.gz';
   }
 
+  /**
+   * Tests that the nodes were properly updated.
+   */
+  public function testUpdatedNodes() {
+    $this->runUpdates();
+    $expected_node_data = array(
+      [1, 'article', 'en', 'Test Article - New title'],
+      [2, 'book', 'en', 'Book page'],
+      [3, 'forum', 'en', 'Forum topic'],
+      [4, 'page', 'en', 'Test page'],
+      [8, 'test_content_type', 'en', 'Test title'],
+      // @todo cover Spanish translation of 8.
+    );
+    foreach ($expected_node_data as $node_data) {
+      $id = $node_data[0];
+      $type = $node_data[1];
+      $langcode = $node_data[2];
+      $title = $node_data[3];
+
+      $node = Node::load($id);
+      $this->assertEqual($node->language()->getId(), $langcode);
+      $this->assertEqual($node->getType(), $type);
+      $this->assertEqual($node->title, $title);
+      $this->drupalGet('node/' . $id);
+      $this->assertText($title);
+    }
+  }
 }
