Skip to content
Snippets Groups Projects
Commit 7719a888 authored by Angie Byron's avatar Angie Byron
Browse files

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

parent 49724906
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment