diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-05 18:00:14 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-05 18:00:14 +0000 |
commit | 8691c9f2e8c6076dc689dc4fc691b97f4a01f699 (patch) | |
tree | fd7e0dc487bfd7f00f3894c804a32ea881b0568d /modules/simpletest | |
parent | f1da003bfe34d0b1d2c199d33b5fe87ee5e46d50 (diff) | |
download | brdo-8691c9f2e8c6076dc689dc4fc691b97f4a01f699.tar.gz brdo-8691c9f2e8c6076dc689dc4fc691b97f4a01f699.tar.bz2 |
#420358 follow-up by Dave Reid: Fix some straggler default => standard renaming.
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/tests/bootstrap.test | 2 | ||||
-rw-r--r-- | modules/simpletest/tests/module.test | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/tests/bootstrap.test b/modules/simpletest/tests/bootstrap.test index ff71a167a..a02d34c7a 100644 --- a/modules/simpletest/tests/bootstrap.test +++ b/modules/simpletest/tests/bootstrap.test @@ -339,7 +339,7 @@ class BootstrapGetFilenameTestCase extends DrupalUnitTestCase { $this->assertIdentical(drupal_get_filename('theme_engine', 'phptemplate'), 'themes/engines/phptemplate/phptemplate.engine', t('Retrieve theme engine location.')); // Retrieving a file that is definitely not stored in the database. - $this->assertIdentical(drupal_get_filename('profile', 'default'), 'profiles/default/default.profile', t('Retrieve install profile location.')); + $this->assertIdentical(drupal_get_filename('profile', 'standard'), 'profiles/standard/standard.profile', t('Retrieve install profile location.')); } } diff --git a/modules/simpletest/tests/module.test b/modules/simpletest/tests/module.test index 049f6f75f..939804953 100644 --- a/modules/simpletest/tests/module.test +++ b/modules/simpletest/tests/module.test @@ -23,18 +23,18 @@ class ModuleUnitTest extends DrupalWebTestCase { */ function testModuleList() { // Build a list of modules, sorted alphabetically. - $profile_info = install_profile_info('default', 'en'); + $profile_info = install_profile_info('standard', 'en'); $module_list = $profile_info['dependencies']; // Install profile is a module that is expected to be loaded. - $module_list[] = 'default'; + $module_list[] = 'standard'; sort($module_list); // Compare this list to the one returned by module_list(). We expect them // to match, since all default profile modules have a weight equal to 0 // (except for block.module, which has a lower weight but comes first in // the alphabet anyway). - $this->assertModuleList($module_list, t('Default profile')); + $this->assertModuleList($module_list, t('Standard profile')); // Try to install a new module. drupal_install_modules(array('contact')); |