? includes/database/.schema.inc.swp
? modules/includes
? modules/modules
? modules/locale/.locale.test.swp
? sites/example.sites.php
? sites/default/files
? sites/default/settings.php
Index: includes/database/database.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/database/database.inc,v
retrieving revision 1.126
diff -u -p -r1.126 database.inc
--- includes/database/database.inc	28 Jun 2010 19:57:34 -0000	1.126
+++ includes/database/database.inc	12 Jul 2010 10:18:37 -0000
@@ -2605,7 +2605,6 @@ function db_field_exists($table, $field)
  *
  * @param $table_expression
  *   An SQL expression, for example "simpletest%" (without the quotes).
- *   BEWARE: this is not prefixed, the caller should take care of that.
  *
  * @return
  *   Array, both the keys and the values are the matching tables.
Index: modules/simpletest/simpletest.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/simpletest.module,v
retrieving revision 1.91
diff -u -p -r1.91 simpletest.module
--- modules/simpletest/simpletest.module	30 Mar 2010 07:17:19 -0000	1.91
+++ modules/simpletest/simpletest.module	12 Jul 2010 10:18:37 -0000
@@ -446,7 +446,7 @@ function simpletest_clean_environment() 
  * Removed prefixed tables from the database that are left over from crashed tests.
  */
 function simpletest_clean_database() {
-  $tables = db_find_tables(Database::getConnection()->prefixTables('{simpletest}') . '%');
+  $tables = db_find_tables('simpletest%');
   $schema = drupal_get_schema_unprocessed('simpletest');
   $count = 0;
   foreach (array_diff_key($tables, $schema) as $table) {
