diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php b/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php index 5813ffd..c80495a 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php @@ -75,7 +75,6 @@ function testEnableModulesLoad() { */ function testEnableModulesInstall() { $module = 'filter'; - $table = 'filter'; // @todo Remove after configuration system conversion. $this->enableModules(array('system'), FALSE); @@ -88,10 +87,6 @@ function testEnableModulesInstall() { $list = module_list('permission'); $this->assertFalse(in_array($module, $list), "{$module}_permission() in module_implements() not found."); - $this->assertFalse(db_table_exists($table), "'$table' database table not found."); - $schema = drupal_get_schema($table); - $this->assertFalse($schema, "'$table' table schema not found."); - // Enable the module. $this->enableModules(array($module)); @@ -101,10 +96,6 @@ function testEnableModulesInstall() { $this->assertTrue(in_array($module, $list), "$module module in module_list() found."); $list = module_list('permission'); $this->assertTrue(in_array($module, $list), "{$module}_permission() in module_implements() found."); - - $this->assertTrue(db_table_exists($table), "'$table' database table found."); - $schema = drupal_get_schema($table); - $this->assertTrue($schema, "'$table' table schema found."); } /**