Comment 46 for bug 1586268

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to taskflow (master)

Reviewed: https://review.openstack.org/363488
Committed: https://git.openstack.org/cgit/openstack/taskflow/commit/?id=e26f09e0d14d7a1a763596dd8a6029237e5ce530
Submitter: Jenkins
Branch: master

commit e26f09e0d14d7a1a763596dd8a6029237e5ce530
Author: Ji-Wei <email address hidden>
Date: Wed Aug 31 18:23:25 2016 +0800

    Some classes not define __ne__() built-in function

    Some classes defines __eq__() built-in function, but does
    not define __ne__() built-in function, so self.assertEqual works
    but self.assertNotEqual does not work at all in this test case in
    python2. This patch fixes it.

    Change-Id: I3e4f213081268bad44583a63a84795d39094117f
    Closes-Bug: #1586268