Issue #2080397 by mrsinguyen: Remove Unused local variable from /core/modules/simpletest/simpletest.module.

8.0.x
webchick 2013-12-04 00:44:52 -08:00
parent b2ab427bb2
commit 29e3ae0cc4
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ function simpletest_test_get_all($module = NULL) {
// Sort the groups and tests within the groups by name.
uksort($groups, 'strnatcasecmp');
foreach ($groups as $group => &$tests) {
foreach ($groups as &$tests) {
uksort($tests, 'strnatcasecmp');
}