summaryrefslogtreecommitdiff
path: root/modules/simpletest/drupal_web_test_case.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/drupal_web_test_case.php')
-rw-r--r--modules/simpletest/drupal_web_test_case.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php
index c5d2926e9..9ba935559 100644
--- a/modules/simpletest/drupal_web_test_case.php
+++ b/modules/simpletest/drupal_web_test_case.php
@@ -1136,18 +1136,18 @@ class DrupalWebTestCase extends DrupalTestCase {
$this->preloadRegistry();
- // Include the default profile
+ // Include the default profile.
variable_set('install_profile', 'standard');
$profile_details = install_profile_info('standard', 'en');
// Install the modules specified by the default profile.
- drupal_install_modules($profile_details['dependencies'], TRUE);
+ module_enable($profile_details['dependencies'], FALSE, TRUE);
drupal_static_reset('_node_types_build');
if ($modules = func_get_args()) {
// Install modules needed for this test.
- drupal_install_modules($modules, TRUE);
+ module_enable($modules, TRUE, TRUE);
}
// Because the schema is static cached, we need to flush
@@ -1158,7 +1158,7 @@ class DrupalWebTestCase extends DrupalTestCase {
// Run default profile tasks.
$install_state = array();
- drupal_install_modules(array('standard'), TRUE);
+ module_enable(array('standard'), FALSE, TRUE);
// Rebuild caches.
node_types_rebuild();