#525634 by boombatower: Fix value default value of SimpleTest verbose variable.
parent
49724906a4
commit
7719a88895
|
@ -426,7 +426,7 @@ function simpletest_settings_form(&$form_state) {
|
||||||
'#type' => 'checkbox',
|
'#type' => 'checkbox',
|
||||||
'#title' => t('Provide verbose information when running tests'),
|
'#title' => t('Provide verbose information when running tests'),
|
||||||
'#description' => t('The verbose data will be printed along with the standard assertions. Useful for debugging.'),
|
'#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(
|
$form['httpauth'] = array(
|
||||||
|
|
Loading…
Reference in New Issue