Index: modules/simpletest/drupal_web_test_case.php =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/drupal_web_test_case.php,v retrieving revision 1.226 diff -u -p -r1.226 drupal_web_test_case.php --- modules/simpletest/drupal_web_test_case.php 22 Aug 2010 15:31:18 -0000 1.226 +++ modules/simpletest/drupal_web_test_case.php 22 Aug 2010 16:00:28 -0000 @@ -1221,8 +1221,8 @@ class DrupalWebTestCase extends DrupalTe // Run the profile tasks. $install_profile_module_exists = db_query("SELECT 1 FROM {system} WHERE type = 'module' AND name = :name", array( - ':name' => $this->profile)) - ->fetchField(); + ':name' => $this->profile, + ))->fetchField(); if ($install_profile_module_exists) { module_enable(array($this->profile), FALSE); } Index: profiles/testing/testing.info =================================================================== RCS file: /cvs/drupal/drupal/profiles/testing/testing.info,v retrieving revision 1.1 diff -u -p -r1.1 testing.info --- profiles/testing/testing.info 22 Aug 2010 15:31:18 -0000 1.1 +++ profiles/testing/testing.info 22 Aug 2010 16:02:57 -0000 @@ -1,6 +1,6 @@ ; $Id: testing.info,v 1.1 2010/08/22 15:31:18 dries Exp $ name = Testing -description = Totally stripped back testing profile. +description = Minimal profile for running tests. Includes absolutely required modules only. version = VERSION core = 7.x hidden = TRUE Index: profiles/testing/testing.install =================================================================== RCS file: /cvs/drupal/drupal/profiles/testing/testing.install,v retrieving revision 1.1 diff -u -p -r1.1 testing.install --- profiles/testing/testing.install 22 Aug 2010 15:31:18 -0000 1.1 +++ profiles/testing/testing.install 22 Aug 2010 15:58:49 -0000 @@ -1,4 +1,5 @@