From b1190c11b5551f20a99514bf2b0719b74449277d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 28 Sep 2010 02:30:32 +0000 Subject: - Patch #924686 by mikey_p, munzirtaha: space required after foreach construct. --- scripts/run-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/run-tests.sh') diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh index ee6c90080..f610f7938 100755 --- a/scripts/run-tests.sh +++ b/scripts/run-tests.sh @@ -41,7 +41,7 @@ if ($args['clean']) { // Get the status messages and print them. $messages = array_pop(drupal_get_messages('status')); - foreach($messages as $text) { + foreach ($messages as $text) { echo " - " . $text . "\n"; } exit; @@ -431,7 +431,7 @@ function simpletest_script_get_test_list() { // Check for valid group names and get all valid classes in group. foreach ($args['test_names'] as $group_name) { if (isset($groups[$group_name])) { - foreach($groups[$group_name] as $class_name => $info) { + foreach ($groups[$group_name] as $class_name => $info) { $test_list[] = $class_name; } } -- cgit v1.2.3