method: test.compat.TestCase.assertNotEquals

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

origin: test.compat.TestCase

where:

function source:

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