numpy.testing.assert_equal(actual, desired, err_msg='', verbose=True) [source]
Raises an AssertionError if two objects are not equal. Given two objects (scalars, lists, tuples, dictionaries or numpy arrays), check that all elements of these objects are equal. An exception is raised at the first conflicting values. Parameters:
actual : array_like The object to check. desired : array_like The expected object. err_msg : str, optional The error message to be printed in case of failure. v