From 2c889842a2c6cf8c45b670d5c2066b3e028493ca Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Thu, 9 Apr 2015 15:39:05 +0100 Subject: [PATCH] Issue #2464097 by joshi.rohit100: Add leading backslash to the test classes on the simpletest UI --- core/modules/simpletest/src/Form/SimpletestTestForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/simpletest/src/Form/SimpletestTestForm.php b/core/modules/simpletest/src/Form/SimpletestTestForm.php index 3c0fb268724..f369fa86334 100644 --- a/core/modules/simpletest/src/Form/SimpletestTestForm.php +++ b/core/modules/simpletest/src/Form/SimpletestTestForm.php @@ -144,7 +144,7 @@ class SimpletestTestForm extends FormBase { ); $form['tests'][$class]['title'] = array( '#type' => 'label', - '#title' => $info['name'], + '#title' => '\\' . $info['name'], '#wrapper_attributes' => array( 'class' => array('simpletest-test-label', 'table-filter-text-source'), ),