Index: testing.py
===================================================================
RCS file: /home/cvsroot/world/scipy_core/scipy_test/testing.py,v
retrieving revision 1.49
retrieving revision 1.49.2.3
diff -c -r1.49 -r1.49.2.3
*** testing.py	1 Dec 2004 07:08:51 -0000	1.49
--- testing.py	17 Dec 2004 18:20:28 -0000	1.49.2.3
***************
*** 634,639 ****
--- 633,640 ----
      """ Raise an assertion if two items are not
          equal.  I think this should be part of unittest.py
      """
+     if isinstance(actual, ArrayType):
+         return assert_array_equal(actual, desired, err_msg)
      msg = '\nItems are not equal:\n' + err_msg
      try:
          if ( verbose and len(repr(desired)) < 100 and len(repr(actual)) ):
***************
*** 651,656 ****
--- 652,659 ----
      """ Raise an assertion if two items are not
          equal.  I think this should be part of unittest.py
      """
+     if isinstance(actual, ArrayType):
+         return assert_array_almost_equal(actual, desired, decimal, err_msg)
      msg = '\nItems are not equal:\n' + err_msg
      try:
          if ( verbose and len(repr(desired)) < 100 and len(repr(actual)) ):
