diff --git a/core/modules/simpletest/lib/Drupal/simpletest/DrupalUnitTestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/DrupalUnitTestBase.php
index ac11b8f..7e9c960 100644
--- a/core/modules/simpletest/lib/Drupal/simpletest/DrupalUnitTestBase.php
+++ b/core/modules/simpletest/lib/Drupal/simpletest/DrupalUnitTestBase.php
@@ -89,7 +89,8 @@ protected function setUp() {
     state()->set('system.theme.data', $this->themeData);
 
     // Bootstrap the kernel.
-    $this->kernel = new DrupalKernel('testing', TRUE, drupal_classloader());
+    // No need to dump it; this test runs in-memory.
+    $this->kernel = new DrupalKernel('testing', TRUE, drupal_classloader(), FALSE);
     $this->kernel->boot();
 
     // Ensure that the module list is initially empty.
