diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-06-02 17:39:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-06-02 17:39:12 +0000 |
commit | 24d27b88c75b23eaa4c1bdb83b1752d27d6d6405 (patch) | |
tree | 4a755606bde03f3a7d6d032a33b79aa57a5cb96b /modules/simpletest | |
parent | 098b3f72ca858bd5d7db882b33e2c22664df49f6 (diff) | |
download | brdo-24d27b88c75b23eaa4c1bdb83b1752d27d6d6405.tar.gz brdo-24d27b88c75b23eaa4c1bdb83b1752d27d6d6405.tar.bz2 |
- Patch #260501 by cwgordon7: made the trigger module tests pass.
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/drupal_web_test_case.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index 1944c659f..946777eda 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -368,7 +368,8 @@ class DrupalWebTestCase extends UnitTestCase { drupal_install_system(); // Add the specified modules to the list of modules in the default profile. - $modules = array_unique(array_merge(func_get_args(), drupal_verify_profile('default', 'en'))); + $args = func_get_args(); + $modules = array_unique(array_merge(drupal_verify_profile('default', 'en'), $args)); drupal_install_modules($modules); // Store the list of modules for use in subsequent drupalModuleEnable calls. |