Index: modules/simpletest/tests/bootstrap.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/bootstrap.test,v
retrieving revision 1.26
diff -u -p -r1.26 bootstrap.test
--- modules/simpletest/tests/bootstrap.test	21 Nov 2009 14:35:05 -0000	1.26
+++ modules/simpletest/tests/bootstrap.test	5 Jan 2010 16:56:01 -0000
@@ -339,7 +339,7 @@ class BootstrapGetFilenameTestCase exten
     $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/default/default.profile', t('Retrieve install profile location.'));
   }
 }
 
Index: modules/simpletest/tests/module.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/module.test,v
retrieving revision 1.17
diff -u -p -r1.17 module.test
--- modules/simpletest/tests/module.test	2 Jan 2010 18:56:20 -0000	1.17
+++ modules/simpletest/tests/module.test	5 Jan 2010 16:56:01 -0000
@@ -23,18 +23,18 @@ class ModuleUnitTest extends DrupalWebTe
    */
   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'));
Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.433
diff -u -p -r1.433 system.install
--- modules/system/system.install	4 Jan 2010 23:08:34 -0000	1.433
+++ modules/system/system.install	5 Jan 2010 16:56:02 -0000
@@ -32,7 +32,7 @@ function system_requirements($phase) {
     // Display the currently active install profile, if the site
     // is not running the default install profile.
     $profile = drupal_get_profile();
-    if ($profile != 'default') {
+    if ($profile != 'standard') {
       $info = install_profile_info($profile);
       $requirements['install_profile'] = array(
         'title' => $t('Install profile'),
