method: test.compat.TestCase.failIfEqual

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

origin: test.compat.TestCase

where:

function source:

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