diff --git a/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php b/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php
index 305ab78..4ea1b62 100644
--- a/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php
+++ b/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php
@@ -33,12 +33,11 @@ protected function setUp() {
    * Tests that the database was properly loaded.
    */
   public function testDatabaseLoaded() {
+    // We can't assert anything other then schema version after loading the
+    // database because site might be broken before updates.
     foreach (['user', 'node', 'system', 'update_test_schema'] as $module) {
       $this->assertEqual(drupal_get_installed_schema_version($module), 8000, SafeMarkup::format('Module @module schema is 8000', ['@module' => $module]));
     }
-    $this->assertEqual(\Drupal::config('system.site')->get('name'), 'Site-Install');
-    $this->drupalGet('<front>');
-    $this->assertText('Site-Install');
   }
 
   /**
