method: test.compat.TestCase.assertEqual

*Not documented*
def assertEqual(self, x,y):

origin: test.compat.TestCase

where:

function source:

def assertEqual(self, x,y):
    __tracebackhide__ = True
    if x!=y:
        raise py.test.Item.Failed(msg='%s!=%s' % (x,y))