Index: modules/simpletest/drupal_web_test_case.php =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/drupal_web_test_case.php,v retrieving revision 1.34 diff -u -r1.34 drupal_web_test_case.php --- modules/simpletest/drupal_web_test_case.php 23 Aug 2008 07:42:54 -0000 1.34 +++ modules/simpletest/drupal_web_test_case.php 25 Aug 2008 01:36:35 -0000 @@ -171,7 +171,8 @@ * The status passed in. */ protected function assertEqual($first, $second, $message = '', $group = 'Other') { - return $this->_assert($first == $second, $message ? $message : t('%first is equal to %second', array('%first' => $first, '%second' => $second)), $group); + return $this->_assert($first == $second, $message ? $message : t('%first is equal to %second', + array('%first' => print_r($first, TRUE), '%second' => print_r($second, TRUE))), $group); } /** @@ -189,7 +190,8 @@ * The status passed in. */ protected function assertNotEqual($first, $second, $message = '', $group = 'Other') { - return $this->_assert($first != $second, $message ? $message : t('%first is not equal to %second', array('%first' => $first, '%second' => $second)), $group); + return $this->_assert($first != $second, $message ? $message : t('%first is not equal to %second', + array('%first' => print_r($first, TRUE), '%second' => print_r($second, TRUE))), $group); } /**