summaryrefslogtreecommitdiff
path: root/modules/system/system.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-11-01 21:21:35 +0000
committerDries Buytaert <dries@buytaert.net>2008-11-01 21:21:35 +0000
commitfa94c66c92eaec0a636fa4f92b8496f7c38fc54a (patch)
treee4256186f9897e9b062cf7bb9d5bd84170182bb8 /modules/system/system.test
parent424250196a65b48919de50b2a3327f67c076e0d3 (diff)
downloadbrdo-fa94c66c92eaec0a636fa4f92b8496f7c38fc54a.tar.gz
brdo-fa94c66c92eaec0a636fa4f92b8496f7c38fc54a.tar.bz2
- Patch #328719 by c960657: make the module list tests succeed again.
Diffstat (limited to 'modules/system/system.test')
-rw-r--r--modules/system/system.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.test b/modules/system/system.test
index d3814aa8a..8db303a06 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -118,7 +118,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase {
* @return boolean Tables with specified base table.
*/
function assertTableCount($base_table, $count) {
- $tables = db_find_tables(Database::getActiveConnection()->prefixTables($base_table) . '%');
+ $tables = db_find_tables(Database::getActiveConnection()->prefixTables('{' . $base_table . '}') . '%');
if ($count) {
return $this->assertTrue($tables, t('Tables matching "@base_table" found.', array('@base_table' => $base_table)));