summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/simpletest/simpletest.pages.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/simpletest.pages.inc b/modules/simpletest/simpletest.pages.inc
index 4816cf74e..ffef07a71 100644
--- a/modules/simpletest/simpletest.pages.inc
+++ b/modules/simpletest/simpletest.pages.inc
@@ -402,10 +402,10 @@ function simpletest_result_status_image($status) {
if (!isset($map)) {
$map = array(
- 'pass' => theme('image', 'misc/watchdog-ok.png'),
- 'fail' => theme('image', 'misc/watchdog-error.png'),
- 'exception' => theme('image', 'misc/watchdog-warning.png'),
- 'debug' => theme('image', 'misc/watchdog-warning.png'),
+ 'pass' => theme('image', 'misc/watchdog-ok.png', t('Pass')),
+ 'fail' => theme('image', 'misc/watchdog-error.png', t('Fail')),
+ 'exception' => theme('image', 'misc/watchdog-warning.png', t('Exception')),
+ 'debug' => theme('image', 'misc/watchdog-warning.png', t('Debug')),
);
}
if (isset($map[$status])) {