#525634 by boombatower: Fix value default value of SimpleTest verbose variable.

merge-requests/26/head
Angie Byron 2009-07-21 01:48:08 +00:00
parent 49724906a4
commit 7719a88895
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ function simpletest_settings_form(&$form_state) {
'#type' => 'checkbox',
'#title' => t('Provide verbose information when running tests'),
'#description' => t('The verbose data will be printed along with the standard assertions. Useful for debugging.'),
'#default_value' => variable_get('simpletest_verbose', TRUE),
'#default_value' => variable_get('simpletest_verbose', FALSE),
);
$form['httpauth'] = array(