diff options
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/simpletest.pages.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/simpletest/simpletest.pages.inc b/modules/simpletest/simpletest.pages.inc index b1875c264..1d208cf6e 100644 --- a/modules/simpletest/simpletest.pages.inc +++ b/modules/simpletest/simpletest.pages.inc @@ -260,7 +260,9 @@ function simpletest_result_form(&$form_state, $test_id) { $form['result']['summary']['#' . $assertion->status]++; } $form['result']['results'][$group]['table'] = array( - '#markup' => theme('table', $header, $rows), + '#theme' => 'table', + '#header' => $header, + '#rows' => $rows, ); // Set summary information. |