diff options
Diffstat (limited to 'modules/simpletest/drupal_web_test_case.php')
-rw-r--r-- | modules/simpletest/drupal_web_test_case.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index 739aaa74f..d9a1fa29c 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -1221,8 +1221,8 @@ class DrupalWebTestCase extends DrupalTestCase { // 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); } |